# HG changeset patch # User Christian Brabandt # Date 1508877904 -7200 # Node ID 7ac0ab4c5ee4ce80eabf406151c122f6a3737c7e # Parent 2c893c142b6f4b92bf6b25d049866507df89b2c9 patch 8.0.1216: tabline is not always updated for :file command commit https://github.com/vim/vim/commit/6ce650480844bfaa5410874416b4a2e15f40b870 Author: Bram Moolenaar 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) diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- 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 --- 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,