From 15fbbf7296b47aae83e55058282b45d9493a5483 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Sat, 21 Jun 2014 09:37:51 -0400 Subject: [PATCH] Prefer :Gdiff to :Gvdiff for D in :Gstatus --- plugin/fugitive.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index 9c8b097..f537ab4 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -2147,8 +2147,8 @@ function! s:BufReadIndex() abort nnoremap cc :Gcommit nnoremap cva :Gcommit --amend --verbose nnoremap cvc :Gcommit --verbose - nnoremap D :execute StageDiff('Gvdiff') - nnoremap dd :execute StageDiff('Gvdiff') + nnoremap D :execute StageDiff('Gdiff') + nnoremap dd :execute StageDiff('Gdiff') nnoremap dh :execute StageDiff('Gsdiff') nnoremap ds :execute StageDiff('Gsdiff') nnoremap dp :execute StageDiffEdit()