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