changeset 29910:24fd6fbcd0c0 v9.0.0293

patch 9.0.0293: messages window not hidden when starting a command line Commit: https://github.com/vim/vim/commit/b0509c542ed974cb388d49273d365ff2daf43159 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 28 12:06:21 2022 +0100 patch 9.0.0293: messages window not hidden when starting a command line Problem: Messages window not hidden when starting a command line. Solution: Hide the messages window. (closes https://github.com/vim/vim/issues/10996)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Aug 2022 13:15:05 +0200
parents 170606715a46
children 33a6c7fac792
files src/ex_getln.c src/testdir/test_messages.vim src/version.c
diffstat 3 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -1603,6 +1603,9 @@ getcmdline_int(
 	made_cmdheight_nonzero = TRUE;
 	lastwin->w_p_so = 0;
 	set_option_value((char_u *)"ch", 1L, NULL, 0);
+#ifdef HAS_MESSAGE_WINDOW
+	popup_hide_message_win();
+#endif
 	update_screen(UPD_VALID);                 // redraw the screen NOW
 	made_cmdheight_nonzero = FALSE;
 	lastwin->w_p_so = save_so;
--- a/src/testdir/test_messages.vim
+++ b/src/testdir/test_messages.vim
@@ -398,6 +398,11 @@ func Test_cmdheight_zero()
   if using_popupwin
     redraw
     call assert_equal('test echo', Screenline(&lines))
+
+    " check that the popup is cleared when entering a command line
+    call feedkeys(':', 'xt')
+    redraw
+    call assert_equal('~', Screenline(&lines))
   else
     call assert_equal(116, screenchar(&lines, 1))
   endif
--- a/src/version.c
+++ b/src/version.c
@@ -708,6 +708,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    293,
+/**/
     292,
 /**/
     291,