mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Change sublime text path select priority on mac.
User changed symbolic link for sublime binary is now top priority, since this allows users to actually specify which version of sublime they want to use. Sublime text 2 binary has higher priority over sublime text (3) binary, since sublime text 2 is considered more stable.
This commit is contained in:
parent
b6ea876971
commit
17a092b0ff
1 changed files with 3 additions and 2 deletions
|
@ -2,10 +2,11 @@
|
||||||
|
|
||||||
local _sublime_darwin_paths > /dev/null 2>&1
|
local _sublime_darwin_paths > /dev/null 2>&1
|
||||||
_sublime_darwin_paths=(
|
_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"
|
"$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 2.app/Contents/SharedSupport/bin/subl"
|
||||||
|
"/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
|
||||||
)
|
)
|
||||||
|
|
||||||
if [[ $('uname') == 'Linux' ]]; then
|
if [[ $('uname') == 'Linux' ]]; then
|
||||||
|
|
Loading…
Reference in a new issue