diff src/ex_cmds.c @ 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 cdfd6eb8bb80
children 63d87ba12c34
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;
 }
 
 /*