Blame view
plugins/sublime/sublime.plugin.zsh
1.54 KB
|
093a6c34b
|
1 2 3 4 5 6 7 |
# Sublime Text 2 Aliases
if [[ $('uname') == 'Linux' ]]; then
local _sublime_linux_paths > /dev/null 2>&1
_sublime_linux_paths=(
"$HOME/bin/sublime_text"
"/opt/sublime_text/sublime_text"
|
|
238d8e65a
|
8 |
"/opt/sublime_text_3/sublime_text" |
|
093a6c34b
|
9 10 11 |
"/usr/bin/sublime_text"
"/usr/local/bin/sublime_text"
"/usr/bin/subl"
|
|
238d8e65a
|
12 13 |
"/opt/sublime_text_3/sublime_text"
"/usr/bin/subl3"
|
|
093a6c34b
|
14 15 16 17 |
)
for _sublime_path in $_sublime_linux_paths; do
if [[ -a $_sublime_path ]]; then
st_run() { $_sublime_path $@ >/dev/null 2>&1 &| }
|
|
56a5793ce
|
18 19 |
st_run_sudo() {sudo $_sublime_path $@ >/dev/null 2>&1}
alias sst=st_run_sudo
|
|
093a6c34b
|
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
alias st=st_run
break
fi
done
elif [[ "$OSTYPE" = darwin* ]]; then
local _sublime_darwin_paths > /dev/null 2>&1
_sublime_darwin_paths=(
"/usr/local/bin/subl"
"/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
"/Applications/Sublime Text 3.app/Contents/SharedSupport/bin/subl"
"/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
"$HOME/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
"$HOME/Applications/Sublime Text 3.app/Contents/SharedSupport/bin/subl"
"$HOME/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
)
for _sublime_path in $_sublime_darwin_paths; do
if [[ -a $_sublime_path ]]; then
|
|
238d8e65a
|
39 |
subl () { "$_sublime_path" $* }
|
|
093a6c34b
|
40 41 42 43 44 45 46 |
alias st=subl
break
fi
done
fi
alias stt='st .'
|