From 6ce650480844bfaa5410874416b4a2e15f40b870 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 24 Oct 2017 22:32:59 +0200 Subject: [PATCH] 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) --- src/ex_cmds.c | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) 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, /**/