From c5d4ce7479a7b05af079e31a1da4f1fdf492f77a Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Fri, 27 Jul 2018 15:03:41 -0400 Subject: [PATCH] Fix map to follow the pattern --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 7b709c1..d78e470 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -3124,7 +3124,7 @@ function! fugitive#MapJumps(...) abort nnoremap co :exe 'Gsplit ' . fnameescape(ContainingCommit()) nnoremap cS :exe 'Gvsplit ' . fnameescape(ContainingCommit()) nnoremap cO :exe 'Gtabedit ' . fnameescape(ContainingCommit()) - nnoremap cP :exe 'Gpedit ' . fnameescape(ContainingCommit()) + nnoremap cp :exe 'Gpedit ' . fnameescape(ContainingCommit()) nnoremap . : =fnameescape(recall()) endif endfunction