mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
Update plugins/sublime/sublime.plugin.zsh
Considering the situation when installing sublime text via apt-get (WebUpd8 Sublime Text 2 PPA)
This commit is contained in:
parent
c2ae9e09ca
commit
19aefa2bd6
1 changed files with 5 additions and 1 deletions
|
@ -2,7 +2,11 @@
|
||||||
#unamestr = 'uname'
|
#unamestr = 'uname'
|
||||||
|
|
||||||
if [[ $('uname') == 'Linux' ]]; then
|
if [[ $('uname') == 'Linux' ]]; then
|
||||||
alias st='/usr/bin/sublime_text&'
|
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
|
elif [[ $('uname') == 'Darwin' ]]; then
|
||||||
alias st='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl'
|
alias st='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl'
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue