oh-my-zsh/plugins/sublime/sublime.plugin.zsh

22 lines
635 B
Bash
Raw Normal View History

2012-04-19 07:14:55 +00:00
# Sublime Text 2 Aliases
#unamestr = 'uname'
2012-05-24 15:33:19 +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
if [ -f '/usr/bin/sublime_text' ]; then
st_run() { nohup /usr/bin/sublime_text $@ > /dev/null & }
else
st_run() { nohup /usr/bin/sublime-text $@ > /dev/null & }
fi
alias st=st_run
2012-05-24 15:33:19 +00:00
elif [[ $('uname') == 'Darwin' ]]; then
# 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
fi
2012-04-19 07:14:55 +00:00
alias stt='st .'