Fix sublime path on MacOS X

There was the issue
~➤ st .
The files /Users/apple/Text and /Users/apple/2.app do not exist
This commit is contained in:
Viktor Gamov 2012-07-05 22:04:37 -03:00
commit e79106cf6c

View file

@ -4,6 +4,6 @@
if [[ $('uname') == 'Linux' ]]; then
alias st='/usr/bin/sublime_text&'
elif [[ $('uname') == 'Darwin' ]]; then
alias st='open -a /Applications/Sublime Text 2.app'
alias st='open -a "/Applications/Sublime Text 2.app"'
fi
alias stt='st .'