1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-13 09:20:09 +00:00
ohmyzsh/plugins/sublime/sublime.plugin.zsh

10 lines
234 B
Bash
Raw Normal View History

2012-04-19 07:14:55 +00:00
# Sublime Text 2 Aliases
#unamestr = 'uname'
2012-05-24 15:33:19 +00:00
if [[ $('uname') == 'Linux' ]]; then
alias st='/usr/bin/sublime_text&'
elif [[ $('uname') == 'Darwin' ]]; then
2012-07-09 06:34:27 +00:00
alias st='open -a /Applications/Sublime\ Text\ 2.app'
fi
2012-04-19 07:14:55 +00:00
alias stt='st .'