diff options
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index e3b7fff1c4..5ffeb9425e 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -6400,6 +6400,7 @@ void showruler(bool always) || (p_title && (stl_syntax & STL_IN_TITLE))) { maketitle(); } + // Redraw the tab pages line if needed. if (redraw_tabline) { draw_tabline(); @@ -6714,6 +6715,7 @@ void screen_resize(int width, int height) if (starting != NO_SCREEN) { maketitle(); + changed_line_abv_curs(); invalidate_botline(); |