summaryrefslogtreecommitdiff
path: root/src/cmdexpand.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-02-10 21:09:45 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-10 21:09:45 +0000
commit414acd342f4a66d930da34d419929985b48bd301 (patch)
treed1cdba27388b535b921f483b960142dff7eed815 /src/cmdexpand.c
parent949b35d83b69a7eab7b280b5af6940da9aedad43 (diff)
downloadvim-git-414acd342f4a66d930da34d419929985b48bd301.tar.gz
patch 8.2.4341: command line not redrawn when finishing popup menuv8.2.4341
Problem: Command line not redrawn when finishing popup menu and the screen has scrolled up. Solution: Redraw the command line after updating the screen. (closes #9722)
Diffstat (limited to 'src/cmdexpand.c')
-rw-r--r--src/cmdexpand.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmdexpand.c b/src/cmdexpand.c
index 280bf8334..79b6a2b2c 100644
--- a/src/cmdexpand.c
+++ b/src/cmdexpand.c
@@ -331,6 +331,7 @@ void cmdline_pum_remove(void)
pum_undisplay();
VIM_CLEAR(compl_match_array);
update_screen(0);
+ redrawcmd();
}
void cmdline_pum_cleanup(cmdline_info_T *cclp)