From db9ebcd8522164aa4c2065c10294b2e3c6c127f6 Mon Sep 17 00:00:00 2001 From: tmsanrinsha Date: Sun, 10 Jan 2016 22:43:07 +0900 Subject: [PATCH] Do not use shellescape --- plugin/gitv.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gitv.vim b/plugin/gitv.vim index 4f99ae4..89fb435 100644 --- a/plugin/gitv.vim +++ b/plugin/gitv.vim @@ -51,7 +51,7 @@ let g:Gitv_InstanceCounter = 0 let s:localUncommitedMsg = 'Local uncommitted changes, not checked in to index.' let s:localCommitedMsg = 'Local changes checked in to index but not committed.' -command! -nargs=* -range -bang -complete=custom,s:CompleteGitv Gitv call s:OpenGitv(shellescape(), 0, , ) +command! -nargs=* -range -bang -complete=custom,s:CompleteGitv Gitv call s:OpenGitv(, 0, , ) cabbrev gitv =(getcmdtype()==':' && getcmdpos()==1 ? 'Gitv' : 'gitv') "Public API:"{{{