From 4a745ea72fa93bb15dd077109afbb3d1809383f2 Mon Sep 17 00:00:00 2001 From: Tim Pope <code@tpope.net> Date: Wed, 19 Feb 2025 13:08:32 -0500 Subject: [PATCH] Remove antiquated `a` map Resolves: https://github.com/tpope/vim-fugitive/issues/2380 --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index eac410e9..1cbc2ebc 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -2697,7 +2697,7 @@ function! s:MapStatus() abort call s:MapMotion('gP', "exe <SID>StageJump(v:count, 'Unpulled')") call s:MapMotion('gr', "exe <SID>StageJump(v:count, 'Rebasing')") call s:Map('n', 'C', ":echoerr 'fugitive: C has been removed in favor of cc'<CR>", '<silent><unique>') - call s:Map('n', 'a', ":<C-U>execute <SID>Do('Toggle',0)<CR>", '<silent>') + call s:Map('n', 'a', ":echoerr 'fugitive: a has been removed in favor of s'<CR>", '<silent><unique>') call s:Map('n', 'i', ":<C-U>execute <SID>NextExpandedHunk(v:count1)<CR>", '<silent>') call s:Map('n', "=", ":<C-U>execute <SID>StageInline('toggle',line('.'),v:count)<CR>", '<silent>') call s:Map('n', "<", ":<C-U>execute <SID>StageInline('hide', line('.'),v:count)<CR>", '<silent>') -- GitLab