diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-07-14 11:38:09 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-06 21:56:38 -0400 |
commit | 593c0bd77f4d38fd73d6de024a4e41738a2f20d4 (patch) | |
tree | aa4debda691b71f06839110348feaf18271b5ff3 | |
parent | 059986e03827c24e2fa1ac2a3b66743dfed9a8d9 (diff) | |
download | rneovim-593c0bd77f4d38fd73d6de024a4e41738a2f20d4.tar.gz rneovim-593c0bd77f4d38fd73d6de024a4e41738a2f20d4.tar.bz2 rneovim-593c0bd77f4d38fd73d6de024a4e41738a2f20d4.zip |
vim-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)
https://github.com/vim/vim/commit/6ce650480844bfaa5410874416b4a2e15f40b870
-rw-r--r-- | src/nvim/ex_cmds.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 4ef51b72b7..af46f7616a 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -1598,6 +1598,7 @@ void ex_file(exarg_T *eap) // print full file name if :cd used fileinfo(false, false, eap->forceit); } + redraw_tabline = true; } /* |