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