From 5b33a7358bad55515b66f6ccc835446823546c29 Mon Sep 17 00:00:00 2001 From: Adam Lickel Date: Mon, 11 Jan 2010 15:02:25 -0800 Subject: [PATCH] If svk thinks we're interactive (eg macvim), tell it not to create a local repo --- plugin/vcssvk.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/vcssvk.vim b/plugin/vcssvk.vim index 38111ff..c1142d7 100644 --- a/plugin/vcssvk.vim +++ b/plugin/vcssvk.vim @@ -89,7 +89,7 @@ function! s:svkFunctions.Identify(buffer) else let directoryName = fnamemodify(fileName, ':p:h') endif - let statusText = s:VCSCommandUtility.system(s:Executable() . ' info -- "' . directoryName . '"') + let statusText = s:VCSCommandUtility.system(s:Executable() . ' info -- "' . directoryName . '"', "no") if(v:shell_error) return 0 else -- 2.11.4.GIT