Browse Source

Fixed a bug in checking the platform

Varun Vijayaraghavan 12 years ago
parent
commit
8923694fb4
1 changed files with 5 additions and 4 deletions
  1. 5 4
      plugins/sublime/sublime.plugin.zsh

+ 5 - 4
plugins/sublime/sublime.plugin.zsh

@@ -1,8 +1,9 @@
 # Sublime Text 2 Aliases
 #unamestr = 'uname'
-if [[ uname == 'Linux' ]]; then
-	alias st='open -a /usr/bin/sublime_text'
-elif  [[ uname == 'Darwin' ]]; then
-	alias st='open -a "/Applications/Sublime Text 2.app'
+
+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 .'