From 51c54138ba5ecb03f008f4442b9a46a0cc2e3ded Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Thu, 4 Jul 2019 06:50:37 -0400 Subject: [PATCH] Fix count on :Gstatus maps --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index d05a037..d47ba66 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -2143,7 +2143,7 @@ endfunction function! s:Selection(arg1, ...) abort if a:arg1 ==# 'n' let arg1 = line('.') - let arg2 = v:count + let arg2 = -v:count elseif a:arg1 ==# 'v' let arg1 = line("'<") let arg2 = line("'>")