From 6e2310a15437c1454cbf5455cf39d33a88b57621 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Thu, 18 Jul 2019 16:57:24 -0400 Subject: [PATCH] :Gstatus called from status window forces reload --- autoload/fugitive.vim | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index db80f57..bb40eaf 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -2189,8 +2189,12 @@ function! s:StatusCommand(line1, line2, range, count, bang, mods, reg, arg, args \ s:fnameescape(file) for winnr in range(1, winnr('$')) if s:cpath(file, fnamemodify(bufname(winbufnr(winnr)), ':p')) - call s:ExpireStatus(-1) - exe winnr . 'wincmd w' + if winnr == winnr() + call s:ReloadStatus() + else + call s:ExpireStatus(dir) + exe winnr . 'wincmd w' + endif let w:fugitive_status = dir return 1 endif