diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-07-22 06:25:07 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-07-22 12:25:07 +0200 |
commit | 39549159fef535ef2d44c0ca62137bac16f469ee (patch) | |
tree | 2f23f016381ddcaa17e3a385c74553373899cf29 /src/nvim/screen.c | |
parent | f8684bf6b9e586733c42a21f3f4c947a37bacdbc (diff) | |
download | rneovim-39549159fef535ef2d44c0ca62137bac16f469ee.tar.gz rneovim-39549159fef535ef2d44c0ca62137bac16f469ee.tar.bz2 rneovim-39549159fef535ef2d44c0ca62137bac16f469ee.zip |
vim-patch:8.1.0706: introduce :redrawtabline #10570
Problem: Tabline is not always redrawn when something that is used in
'tabline' changes.
Solution: Add ":redrawtabline" so that a plugin can at least cause the
redraw when needed.
https://github.com/vim/vim/commit/e12bab3144af8943937bd0ff4bc57f04e53037b3
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index ab9f71ed6c..457141f911 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -6650,7 +6650,7 @@ static void recording_mode(int attr) /* * Draw the tab pages line at the top of the Vim window. */ -static void draw_tabline(void) +void draw_tabline(void) { int tabcount = 0; int tabwidth = 0; |