2012-04-19 00:14:55 -07:00
|
|
|
# Sublime Text 2 Aliases
|
2012-05-24 08:33:19 -07:00
|
|
|
|
2013-04-07 06:12:30 -07:00
|
|
|
local _sublime_darwin_paths > /dev/null 2>&1
|
2013-02-09 00:00:41 -07:00
|
|
|
_sublime_darwin_paths=(
|
2013-04-29 00:19:31 -07:00
|
|
|
"/usr/local/bin/subl"
|
2013-02-09 00:00:41 -07:00
|
|
|
"$HOME/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
|
2013-04-29 00:19:31 -07:00
|
|
|
"$HOME/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
|
2013-02-09 00:00:41 -07:00
|
|
|
"/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
|
2013-04-29 00:19:31 -07:00
|
|
|
"/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
|
2013-02-09 00:00:41 -07:00
|
|
|
)
|
2012-07-28 21:53:20 -07:00
|
|
|
|
2012-05-24 08:33:19 -07:00
|
|
|
if [[ $('uname') == 'Linux' ]]; then
|
2012-11-05 01:55:55 -07:00
|
|
|
if [ -f '/usr/bin/sublime_text' ]; then
|
2012-12-02 11:54:24 -07:00
|
|
|
st_run() { nohup /usr/bin/sublime_text $@ > /dev/null & }
|
2012-11-05 01:55:55 -07:00
|
|
|
else
|
2012-12-02 11:54:24 -07:00
|
|
|
st_run() { nohup /usr/bin/sublime-text $@ > /dev/null & }
|
2012-11-05 01:55:55 -07:00
|
|
|
fi
|
2013-02-09 00:00:41 -07:00
|
|
|
alias st=st_run
|
|
|
|
|
2012-05-24 08:33:19 -07:00
|
|
|
elif [[ $('uname') == 'Darwin' ]]; then
|
2013-02-09 00:00:41 -07:00
|
|
|
|
|
|
|
for _sublime_path in $_sublime_darwin_paths; do
|
|
|
|
if [[ -a $_sublime_path ]]; then
|
2013-09-05 07:12:12 -07:00
|
|
|
alias subl="'$_sublime_path'"
|
|
|
|
alias st=subl
|
2013-04-09 07:41:48 -07:00
|
|
|
break
|
2013-02-09 00:00:41 -07:00
|
|
|
fi
|
|
|
|
done
|
2012-05-21 07:42:12 -07:00
|
|
|
fi
|
2013-02-09 00:00:41 -07:00
|
|
|
|
2012-04-19 00:14:55 -07:00
|
|
|
alias stt='st .'
|