From 8c2f76fb848321314fd6da1e30a609973c924432 Mon Sep 17 00:00:00 2001 From: Bob Hiestand Date: Wed, 9 Dec 2009 13:41:09 -0600 Subject: [PATCH] Removed -- from vcsgit implementation of blame commandline made incorrect by a26f3b. --- plugin/vcsgit.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/vcsgit.vim b/plugin/vcsgit.vim index d2eb50f..b7e6f6f 100644 --- a/plugin/vcsgit.vim +++ b/plugin/vcsgit.vim @@ -116,7 +116,7 @@ function! s:gitFunctions.Annotate(argList) let options = join(a:argList, ' ') endif - let resultBuffer = s:DoCommand('blame ' . options . ' -- ', 'annotate', options, {}) + let resultBuffer = s:DoCommand('blame ' . options, 'annotate', options, {}) if resultBuffer > 0 normal 1G set filetype=gitAnnotate -- 2.11.4.GIT