summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-10-24 22:32:59 +0200
committerBram Moolenaar <Bram@vim.org>2017-10-24 22:32:59 +0200
commit6ce650480844bfaa5410874416b4a2e15f40b870 (patch)
tree172737d72b86af270be1b987431c25b887699ef7
parent2f40d129bf45cd35976e4120336ae6d504f5a5dd (diff)
downloadvim-git-6ce650480844bfaa5410874416b4a2e15f40b870.tar.gz
patch 8.0.1216: tabline is not always updated for :file commandv8.0.1216
Problem: Tabline is not always updated for :file command. (Norio Takagi) Solution: Set redraw_tabline. (Hirohito Higashi)
-rw-r--r--src/ex_cmds.c1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
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
@@ -762,6 +762,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1216,
+/**/
1215,
/**/
1214,