From 8c89c8d1f5b27092258147777bc8b847c6d4f2e3 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Thu, 3 Jan 2019 13:46:16 -0500 Subject: [PATCH] Enable maps in :Git! output buffers --- autoload/fugitive.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index e014f42..6bf2245 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -1775,6 +1775,9 @@ function! s:SetupTemp(file) abort setlocal nomodifiable endif call FugitiveDetect(a:file) + if &filetype ==# 'git' + call fugitive#MapJumps() + endif endif return '' endfunction