Skip to content

Commit

Permalink
Merge pull request #1259 from bwl/sublime-fix
Browse files Browse the repository at this point in the history
Adding logic for ~/Applications folder installs of Sublime Text 2
  • Loading branch information
robbyrussell committed Dec 2, 2012
2 parents 9977afc + aaf705c commit 96f35e6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion plugins/sublime/sublime.plugin.zsh
@@ -1,13 +1,20 @@
# Sublime Text 2 Aliases
#unamestr = 'uname'

local _sublime_darwin_subl=/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl

if [[ $('uname') == 'Linux' ]]; then
if [ -f '/usr/bin/sublime_text' ]; then
alias st='/usr/bin/sublime_text&'
else
alias st='/usr/bin/sublime-text&'
fi
elif [[ $('uname') == 'Darwin' ]]; then
alias st='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl'
# 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
alias stt='st .'

0 comments on commit 96f35e6

Please sign in to comment.