From: Bram Moolenaar Date: Tue, 24 Oct 2017 20:32:59 +0000 (+0200) Subject: patch 8.0.1216: tabline is not always updated for :file command X-Git-Tag: v8.0.1216 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ce650480844bfaa5410874416b4a2e15f40b870;p=vim patch 8.0.1216: tabline is not always updated for :file command Problem: Tabline is not always updated for :file command. (Norio Takagi) Solution: Set redraw_tabline. (Hirohito Higashi) --- diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 60f47bbd2..154372883 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3002,6 +3002,7 @@ ex_file(exarg_T *eap) /* print full file name if :cd used */ if (!shortmess(SHM_FILEINFO)) fileinfo(FALSE, FALSE, eap->forceit); + redraw_tabline = TRUE; } /* diff --git a/src/version.c b/src/version.c index 05db90f1b..3668e3024 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1216, /**/ 1215, /**/