commit cc525c99df392e0dbb56d4072cd95cf035dc37e4 (tree)
parent f5bbd4eea077828340f6722dbc8a58847bd5784f
Author: Tim Pope <code@tpope.net>
Date: Tue, 16 Mar 2021 05:15:48 -0400
Fix remaining :Gremove and :Gmove references
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim
@@ -3634,7 +3634,7 @@ function! s:StageDelete(lnum1, lnum2, count) abort
continue
endif
if info.status ==# 'D'
- let undo = 'Gremove'
+ let undo = 'GRemove'
elseif info.paths[0] =~# '/$'
let err .= '|echoerr ' . string('fugitive: will not delete directory ' . string(info.relative[0]))
break
@@ -5087,7 +5087,7 @@ function! fugitive#Diffsplit(autodir, keepfocus, mods, arg, args) abort
endtry
endfunction
-" Section: :Gmove, :Gremove
+" Section: :GMove, :GRemove
function! s:Move(force, rename, destination) abort
let dir = s:Dir()