Merge pull request #1595 from nevir/sublime3-support

Support for Sublime Text 3, with fallback
This commit is contained in:
Robby Russell 2013-03-26 22:01:31 -07:00
commit 9276b5f8ac

View File

@ -1,7 +1,12 @@
# Sublime Text 2 Aliases # Sublime Text 2 Aliases
#unamestr = 'uname'
local _sublime_darwin_subl=/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl local _sublime_darwin_paths
_sublime_darwin_paths=(
"$HOME/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
"$HOME/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
"/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
"/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
)
if [[ $('uname') == 'Linux' ]]; then if [[ $('uname') == 'Linux' ]]; then
if [ -f '/usr/bin/sublime_text' ]; then if [ -f '/usr/bin/sublime_text' ]; then
@ -9,13 +14,15 @@ if [[ $('uname') == 'Linux' ]]; then
else else
st_run() { nohup /usr/bin/sublime-text $@ > /dev/null & } st_run() { nohup /usr/bin/sublime-text $@ > /dev/null & }
fi fi
alias st=st_run alias st=st_run
elif [[ $('uname') == 'Darwin' ]]; then elif [[ $('uname') == 'Darwin' ]]; then
# Check if Sublime is installed in user's home application directory
if [[ -a $HOME/${_sublime_darwin_subl} ]]; then for _sublime_path in $_sublime_darwin_paths; do
alias st='$HOME/${_sublime_darwin_subl}' if [[ -a $_sublime_path ]]; then
else alias st="'$_sublime_path'"
alias st='${_sublime_darwin_subl}' fi
fi done
fi fi
alias stt='st .' alias stt='st .'