2012-04-19 07:14:55 +00:00
|
|
|
# Sublime Text 2 Aliases
|
2012-05-21 14:42:12 +00:00
|
|
|
#unamestr = 'uname'
|
2012-05-24 15:33:19 +00:00
|
|
|
|
2012-07-29 04:53:20 +00:00
|
|
|
local _sublime_darwin_subl=/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl
|
|
|
|
|
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
|
2012-12-02 18:54:24 +00:00
|
|
|
alias st=st_run
|
2012-05-24 15:33:19 +00:00
|
|
|
elif [[ $('uname') == 'Darwin' ]]; then
|
2012-07-29 04:53:20 +00:00
|
|
|
# Check if Sublime is installed in user's home application directory
|
|
|
|
if [[ -a $HOME/${_sublime_darwin_subl} ]]; then
|
|
|
|
alias st='$HOME/${_sublime_darwin_subl}'
|
|
|
|
else
|
|
|
|
alias st='${_sublime_darwin_subl}'
|
|
|
|
fi
|
2012-05-21 14:42:12 +00:00
|
|
|
fi
|
2012-04-19 07:14:55 +00:00
|
|
|
alias stt='st .'
|