commit | 6791adca53981666f0cf23e264e102b795224044 | [log] [tgz] |
---|---|---|
author | zeertzjq <zeertzjq@outlook.com> | Tue Jul 26 20:42:25 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jul 26 20:42:25 2022 +0100 |
tree | 1aafabe817adbd4735d0ea012c68b0157b97d010 | |
parent | 1f0dc5e84f5cc530c0fb9d0789e3d42d644429d7 [diff] [blame] |
patch 9.0.0086: tabline is not redrawn when entering command line Problem: Tabline is not redrawn when entering command line. Solution: Set "redraw_tabline". (closes #10771)
diff --git a/src/ex_getln.c b/src/ex_getln.c index 3c984ff..a5196fc 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c
@@ -1758,6 +1758,13 @@ wp->w_redr_status = TRUE; found_one = TRUE; } + + if (*p_tal != NUL) + { + redraw_tabline = TRUE; + found_one = TRUE; + } + if (found_one) redraw_statuslines(); }