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