mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-04-04 09:20:17 +08:00
15 lines
410 B
Bash
Executable File
15 lines
410 B
Bash
Executable File
# Sublime Text 2 Aliases
|
|
#unamestr = 'uname'
|
|
|
|
if [[ $('uname') == 'Linux' ]]; then
|
|
if [ -f '/usr/bin/sublime_text' ]; then
|
|
st_run() { nohup /usr/bin/sublime_text $@ > /dev/null & }
|
|
else
|
|
st_run() { nohup /usr/bin/sublime-text $@ > /dev/null & }
|
|
fi
|
|
alias st=st_run
|
|
elif [[ $('uname') == 'Darwin' ]]; then
|
|
alias st='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl'
|
|
fi
|
|
alias stt='st .'
|