changeset 12676:7ac0ab4c5ee4 v8.0.1216

patch 8.0.1216: tabline is not always updated for :file command commit https://github.com/vim/vim/commit/6ce650480844bfaa5410874416b4a2e15f40b870 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 24 22:32:59 2017 +0200 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)
author Christian Brabandt <cb@256bit.org>
date Tue, 24 Oct 2017 22:45:04 +0200
parents 2c893c142b6f
children 4b2339dc1bf5
files src/ex_cmds.c src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;
 }
 
 /*
--- 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,