浏览代码

Merge pull request #1774 from kevinxucs/sublime-default-2

Change sublime text path select priority on mac.
Robby Russell 11 年之前
父节点
当前提交
b34aee7f76
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      plugins/sublime/sublime.plugin.zsh

+ 3 - 2
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