summaryrefslogtreecommitdiffstats
path: root/src/ex_getln.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-07-26 20:42:25 +0100
committerBram Moolenaar <Bram@vim.org>2022-07-26 20:42:25 +0100
commit6791adca53981666f0cf23e264e102b795224044 (patch)
tree1aafabe817adbd4735d0ea012c68b0157b97d010 /src/ex_getln.c
parent1f0dc5e84f5cc530c0fb9d0789e3d42d644429d7 (diff)
patch 9.0.0086: tabline is not redrawn when entering command linev9.0.0086
Problem: Tabline is not redrawn when entering command line. Solution: Set "redraw_tabline". (closes #10771)
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r--src/ex_getln.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 3c984ff2a3..a5196fcf6b 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -1758,6 +1758,13 @@ getcmdline_int(
wp->w_redr_status = TRUE;
found_one = TRUE;
}
+
+ if (*p_tal != NUL)
+ {
+ redraw_tabline = TRUE;
+ found_one = TRUE;
+ }
+
if (found_one)
redraw_statuslines();
}