From e79106cf6c91312b74ebf5a3ef4238c46e7c882c Mon Sep 17 00:00:00 2001 From: Viktor Gamov Date: Thu, 5 Jul 2012 22:04:37 -0300 Subject: [PATCH] Fix sublime path on MacOS X MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was the issue ~➤ st . The files /Users/apple/Text and /Users/apple/2.app do not exist --- plugins/sublime/sublime.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sublime/sublime.plugin.zsh b/plugins/sublime/sublime.plugin.zsh index 0035b1b26..8ea5a81ad 100755 --- a/plugins/sublime/sublime.plugin.zsh +++ b/plugins/sublime/sublime.plugin.zsh @@ -4,6 +4,6 @@ if [[ $('uname') == 'Linux' ]]; then alias st='/usr/bin/sublime_text&' elif [[ $('uname') == 'Darwin' ]]; then - alias st='open -a /Applications/Sublime Text 2.app' + alias st='open -a "/Applications/Sublime Text 2.app"' fi alias stt='st .'