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:"{{{