0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/sublime/sublime.plugin.zsh

10 lines
258 B
Bash
Raw Normal View History

2012-04-19 09:14:55 +02:00
# Sublime Text 2 Aliases
#unamestr = 'uname'
2012-05-24 17:33:19 +02: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 09:14:55 +02:00
alias stt='st .'