diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 7f2f602..fa178c4 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -2696,10 +2696,10 @@ function! s:MapStatus() abort call s:Map('n', 'C', ":echoerr 'fugitive: C has been removed in favor of cc'", '') call s:Map('n', 'a', ":echoerr 'fugitive: a has been removed in favor of s'", '') call s:Map('n', 'i', ":execute NextExpandedHunk(v:count1)", '') - call s:Map('n', "=", ":execute StageInline('toggle',line('.'),v:count)", '') + call s:Map('n', "", ":execute StageInline('toggle',line('.'),v:count)", '') call s:Map('n', "<", ":execute StageInline('hide', line('.'),v:count)", '') call s:Map('n', ">", ":execute StageInline('show', line('.'),v:count)", '') - call s:Map('x', "=", ":execute StageInline('toggle',line(\"'<\"),line(\"'>\")-line(\"'<\")+1)", '') + call s:Map('x', "", ":execute StageInline('toggle',line(\"'<\"),line(\"'>\")-line(\"'<\")+1)", '') call s:Map('x', "<", ":execute StageInline('hide', line(\"'<\"),line(\"'>\")-line(\"'<\")+1)", '') call s:Map('x', ">", ":execute StageInline('show', line(\"'<\"),line(\"'>\")-line(\"'<\")+1)", '') call s:Map('n', 'D', ":echoerr 'fugitive: D has been removed in favor of dd'", '')