mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
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:
parent
0370de582b
commit
e79106cf6c
1 changed files with 1 additions and 1 deletions
|
|
@ -4,6 +4,6 @@
|
||||||
if [[ $('uname') == 'Linux' ]]; then
|
if [[ $('uname') == 'Linux' ]]; then
|
||||||
alias st='/usr/bin/sublime_text&'
|
alias st='/usr/bin/sublime_text&'
|
||||||
elif [[ $('uname') == 'Darwin' ]]; then
|
elif [[ $('uname') == 'Darwin' ]]; then
|
||||||
alias st='open -a /Applications/Sublime Text 2.app'
|
alias st='open -a "/Applications/Sublime Text 2.app"'
|
||||||
fi
|
fi
|
||||||
alias stt='st .'
|
alias stt='st .'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue