2012-04-19 00:14:55 -07:00
|
|
|
# Sublime Text 2 Aliases
|
2012-05-24 08:33:19 -07:00
|
|
|
|
|
|
|
if [[ $('uname') == 'Linux' ]]; then
|
2014-03-02 12:13:55 -07:00
|
|
|
local _sublime_linux_paths > /dev/null 2>&1
|
|
|
|
_sublime_linux_paths=(
|
|
|
|
"$HOME/bin/sublime_text"
|
|
|
|
"/opt/sublime_text/sublime_text"
|
2015-05-01 14:44:50 -07:00
|
|
|
"/opt/sublime_text_3/sublime_text"
|
2014-03-02 12:13:55 -07:00
|
|
|
"/usr/bin/sublime_text"
|
|
|
|
"/usr/local/bin/sublime_text"
|
2014-06-21 18:29:05 -07:00
|
|
|
"/usr/bin/subl"
|
2015-05-25 14:02:26 -07:00
|
|
|
"/opt/sublime_text_3/sublime_text"
|
|
|
|
"/usr/bin/subl3"
|
2014-03-02 12:13:55 -07:00
|
|
|
)
|
|
|
|
for _sublime_path in $_sublime_linux_paths; do
|
|
|
|
if [[ -a $_sublime_path ]]; then
|
|
|
|
st_run() { $_sublime_path $@ >/dev/null 2>&1 &| }
|
2015-01-11 07:52:08 -07:00
|
|
|
st_run_sudo() {sudo $_sublime_path $@ >/dev/null 2>&1}
|
|
|
|
alias sst=st_run_sudo
|
2014-03-02 12:13:55 -07:00
|
|
|
alias st=st_run
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2013-02-09 00:00:41 -07:00
|
|
|
|
2014-04-23 07:13:26 -07:00
|
|
|
elif [[ "$OSTYPE" = darwin* ]]; then
|
2014-03-02 12:13:55 -07:00
|
|
|
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"
|
|
|
|
)
|
2013-02-09 00:00:41 -07:00
|
|
|
|
2013-11-16 16:03:16 -07:00
|
|
|
for _sublime_path in $_sublime_darwin_paths; do
|
|
|
|
if [[ -a $_sublime_path ]]; then
|
2014-12-29 12:48:24 -07:00
|
|
|
subl () { "$_sublime_path" $* }
|
2013-11-16 16:03:16 -07:00
|
|
|
alias st=subl
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2012-05-21 07:42:12 -07:00
|
|
|
fi
|
2013-02-09 00:00:41 -07:00
|
|
|
|
2012-04-19 00:14:55 -07:00
|
|
|
alias stt='st .'
|