Merge pull request #1259 from bwl/sublime-fix
Adding logic for ~/Applications folder installs of Sublime Text 2
This commit is contained in:
commit
96f35e6949
@ -1,6 +1,8 @@
|
|||||||
# Sublime Text 2 Aliases
|
# Sublime Text 2 Aliases
|
||||||
#unamestr = 'uname'
|
#unamestr = 'uname'
|
||||||
|
|
||||||
|
local _sublime_darwin_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
|
||||||
alias st='/usr/bin/sublime_text&'
|
alias st='/usr/bin/sublime_text&'
|
||||||
@ -8,6 +10,11 @@ if [[ $('uname') == 'Linux' ]]; then
|
|||||||
alias st='/usr/bin/sublime-text&'
|
alias st='/usr/bin/sublime-text&'
|
||||||
fi
|
fi
|
||||||
elif [[ $('uname') == 'Darwin' ]]; then
|
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
|
fi
|
||||||
alias stt='st .'
|
alias stt='st .'
|
||||||
|
Loading…
Reference in New Issue
Block a user