From 94eef8a08c00434026cef1be56bacfd23ab1a81c Mon Sep 17 00:00:00 2001 From: Richard Otvos Date: Wed, 3 Jul 2013 12:18:16 +0200 Subject: [PATCH] Added the default SublimeText3 path. --- 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 82faf87c9..1ad86db22 100755 --- a/plugins/sublime/sublime.plugin.zsh +++ b/plugins/sublime/sublime.plugin.zsh @@ -13,7 +13,7 @@ if [[ $('uname') == 'Linux' ]]; then if [ -f '/usr/bin/sublime_text' ]; then st_run() { nohup /usr/bin/sublime_text $@ > /dev/null & } else - st_run() { nohup /usr/bin/sublime-text $@ > /dev/null & } + st_run() { nohup /usr/bin/subl $@ > /dev/null & } fi alias st=st_run