1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-30 22:54:13 +08:00
ohmyzsh/plugins/sublime/sublime.plugin.zsh

10 lines
258 B
Bash
Raw Normal View History

2012-04-19 15:14:55 +08:00
# Sublime Text 2 Aliases
#unamestr = 'uname'
2012-05-24 23:33:19 +08:00
if [[ $('uname') == 'Linux' ]]; then
alias st='/usr/bin/sublime_text&'
elif [[ $('uname') == 'Darwin' ]]; then
alias st='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl'
fi
2012-04-19 15:14:55 +08:00
alias stt='st .'