From 414acd342f4a66d930da34d419929985b48bd301 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 10 Feb 2022 21:09:45 +0000 Subject: patch 8.2.4341: command line not redrawn when finishing popup menu 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) --- src/cmdexpand.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/cmdexpand.c') diff --git a/src/cmdexpand.c b/src/cmdexpand.c index 280bf83348..79b6a2b2c5 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) -- cgit v1.2.3