The darwin path to sublime text needs to be escaped to work.

This commit is contained in:
John Griffin 2012-07-04 10:54:54 +02:00
commit ea1ad11634

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 .'