From 3f703b6e03c4a6f28fa9f520a85374da86efc253 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Mon, 22 Oct 2012 16:37:42 -0400 Subject: [PATCH] Replace :Gstatus cv with cva and cvc My rebuttal to #263. --- doc/fugitive.txt | 4 +++- plugin/fugitive.vim | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/fugitive.txt b/doc/fugitive.txt index c617b55..51addb4 100644 --- a/doc/fugitive.txt +++ b/doc/fugitive.txt @@ -39,9 +39,11 @@ that are part of Git repositories). |:Gedit| - |:Git| add - |:Git| reset (staged files) - C |:Gcommit| cA |:Gcommit| --amend --reuse-message=HEAD ca |:Gcommit| --amend + cc |:Gcommit| + cva |:Gcommit| --amend --verbose + cvc |:Gcommit| --verbose D |:Gdiff| ds |:Gsdiff| dp |:Git!| diff (p for patch; use :Gw to apply) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index f62c362..16532e1 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -2048,7 +2048,8 @@ function! s:BufReadIndex() nnoremap cA :Gcommit --amend --reuse-message=HEAD nnoremap ca :Gcommit --amend nnoremap cc :Gcommit - nnoremap cv :Gcommit -v + nnoremap cva :Gcommit --amend --verbose + nnoremap cvc :Gcommit --verbose nnoremap D :execute StageDiff('Gvdiff') nnoremap dd :execute StageDiff('Gvdiff') nnoremap dh :execute StageDiff('Gsdiff')