mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
There was the issue ~➤ st . The files /Users/apple/Text and /Users/apple/2.app do not exist
9 lines
234 B
Bash
Executable file
9 lines
234 B
Bash
Executable file
# Sublime Text 2 Aliases
|
|
#unamestr = 'uname'
|
|
|
|
if [[ $('uname') == 'Linux' ]]; then
|
|
alias st='/usr/bin/sublime_text&'
|
|
elif [[ $('uname') == 'Darwin' ]]; then
|
|
alias st='open -a "/Applications/Sublime Text 2.app"'
|
|
fi
|
|
alias stt='st .'
|