Commit ba1b9ab0 authored by Bruno Pinto's avatar Bruno Pinto

Merge pull request #98 from joshuawarner32/add-subl-3

parents 04011838 6986fb1c
...@@ -3,5 +3,9 @@ function subl --description 'Open Sublime Text' ...@@ -3,5 +3,9 @@ function subl --description 'Open Sublime Text'
"/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" $argv "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" $argv
else if test -d "/Applications/Sublime Text 2.app" else if test -d "/Applications/Sublime Text 2.app"
"/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" $argv "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" $argv
else if test -x "/opt/sublime_text/sublime_text"
"/opt/sublime_text/sublime_text" $argv
else
echo "No Sublime Text installation found"
end end
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment