diff options
author | Robby Russell <robby@planetargon.com> | 2013-03-26 22:01:31 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-03-26 22:01:31 -0700 |
commit | 9276b5f8ac10d23f68f88fb45282f238f8b602ed (patch) | |
tree | 72c9e9da1a841fdbd53467f5250a58cd743c83ee | |
parent | 6f72d6c17c35e0b6e03592440ea22f314a4dd996 (diff) | |
parent | 3d81ecfb43d0da18a3b89b5aa12a78c1ad91f063 (diff) | |
download | zsh-9276b5f8ac10d23f68f88fb45282f238f8b602ed.tar.gz zsh-9276b5f8ac10d23f68f88fb45282f238f8b602ed.tar.bz2 zsh-9276b5f8ac10d23f68f88fb45282f238f8b602ed.zip |
Merge pull request #1595 from nevir/sublime3-support
Support for Sublime Text 3, with fallback
-rwxr-xr-x | plugins/sublime/sublime.plugin.zsh | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/plugins/sublime/sublime.plugin.zsh b/plugins/sublime/sublime.plugin.zsh index 1b2cbcdce..bfbc45a07 100755 --- a/plugins/sublime/sublime.plugin.zsh +++ b/plugins/sublime/sublime.plugin.zsh @@ -1,7 +1,12 @@ # Sublime Text 2 Aliases -#unamestr = 'uname' -local _sublime_darwin_subl=/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl +local _sublime_darwin_paths +_sublime_darwin_paths=( + "$HOME/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" + "$HOME/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" + "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" + "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" +) if [[ $('uname') == 'Linux' ]]; then if [ -f '/usr/bin/sublime_text' ]; then @@ -9,13 +14,15 @@ if [[ $('uname') == 'Linux' ]]; then else st_run() { nohup /usr/bin/sublime-text $@ > /dev/null & } fi -alias st=st_run + alias st=st_run + elif [[ $('uname') == 'Darwin' ]]; then - # 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 + + for _sublime_path in $_sublime_darwin_paths; do + if [[ -a $_sublime_path ]]; then + alias st="'$_sublime_path'" + fi + done fi + alias stt='st .' |