From b8c5128f89aab46d7c17b3435611075f7c868ca0 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Fri, 8 Jul 2022 00:45:44 -0400 Subject: [PATCH] Fix automatic status reload when at fugitive:// URL --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 29385cd..dedce25 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -4343,7 +4343,7 @@ augroup fugitive_status \ if get(g:, 'fugitive_focus_gained', !has('win32')) | \ call fugitive#DidChange(0) | \ endif - autocmd BufEnter index,index.lock + autocmd BufEnter index,index.lock,fugitive://*// \ call s:ReloadWinStatus() autocmd TabEnter * \ if exists('t:fugitive_reload_status') |