diff options
author | Robby Russell <robby@planetargon.com> | 2013-04-30 23:03:24 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-04-30 23:03:24 -0700 |
commit | b34aee7f76c4cd37e643a330409ac580776b3837 (patch) | |
tree | 7787ce019c39904b7c6517a0e0201d67dc07fc45 /plugins/sublime/sublime.plugin.zsh | |
parent | b427a41fd3401947242711d0b181faed31c349e0 (diff) | |
parent | 17a092b0ffa1ecf4ef9f727054a414e26f9e1edd (diff) | |
download | zsh-b34aee7f76c4cd37e643a330409ac580776b3837.tar.gz zsh-b34aee7f76c4cd37e643a330409ac580776b3837.tar.bz2 zsh-b34aee7f76c4cd37e643a330409ac580776b3837.zip |
Merge pull request #1774 from kevinxucs/sublime-default-2
Change sublime text path select priority on mac.
Diffstat (limited to 'plugins/sublime/sublime.plugin.zsh')
-rwxr-xr-x | plugins/sublime/sublime.plugin.zsh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/sublime/sublime.plugin.zsh b/plugins/sublime/sublime.plugin.zsh index e74695de0..82faf87c9 100755 --- a/plugins/sublime/sublime.plugin.zsh +++ b/plugins/sublime/sublime.plugin.zsh @@ -2,10 +2,11 @@ local _sublime_darwin_paths > /dev/null 2>&1 _sublime_darwin_paths=( - "$HOME/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" + "/usr/local/bin/subl" "$HOME/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" - "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" + "$HOME/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" + "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" ) if [[ $('uname') == 'Linux' ]]; then |