From ccf582838b24295ea128d137214623e36a5c50f1 Mon Sep 17 00:00:00 2001 From: Patrice Peterson Date: Thu, 12 Mar 2020 00:33:37 +0100 Subject: [PATCH] Fix some inconsistencies in help mappings Some didn't use `` or ``. --- autoload/fugitive.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 4458d00..9897274 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -5983,12 +5983,12 @@ function! fugitive#MapJumps(...) abort call s:Map('n', 'cr', ':Git revert') call s:Map('n', 'crc', ':Git revert =SquashArgument()', '') call s:Map('n', 'crn', ':Git revert --no-commit =SquashArgument()', '') - call s:Map('n', 'cr?', ':help fugitive_cr', '') + call s:Map('n', 'cr?', ':help fugitive_cr', '') call s:Map('n', 'cm', ':Git merge') call s:Map('n', 'cm', ':Git merge') call s:Map('n', 'cmt', ':Git mergetool') - call s:Map('n', 'cm?', ':help fugitive_cm', '') + call s:Map('n', 'cm?', ':help fugitive_cm', '') call s:Map('n', 'cz', ':Git stash') call s:Map('n', 'cz', ':Git stash') @@ -6004,11 +6004,11 @@ function! fugitive#MapJumps(...) abort call s:Map('n', 'co', ':Git checkout') call s:Map('n', 'co', ':Git checkout') call s:Map('n', 'coo', ':Git checkout =SquashArgument() --') - call s:Map('n', 'co?', ':help fugitive_co') + call s:Map('n', 'co?', ':help fugitive_co', '') call s:Map('n', 'cb', ':Git branch') call s:Map('n', 'cb', ':Git branch') - call s:Map('n', 'cb?', ':help fugitive_cb') + call s:Map('n', 'cb?', ':help fugitive_cb', '') call s:Map('n', 'r', ':Git rebase') call s:Map('n', 'r', ':Git rebase')