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