1
0
forked from aniani/vim

patch 9.0.0308: when cmdheight is zero the attention prompt doesn't show

Problem:    When cmdheight is zero the attention prompt doesn't show.
Solution:   Do not use the message window for a prompt.
This commit is contained in:
Bram Moolenaar
2022-08-28 22:17:50 +01:00
parent 134b86553c
commit 33a5dd8b23
4 changed files with 18 additions and 0 deletions

View File

@@ -1443,6 +1443,19 @@ use_message_window(void)
#endif
}
/*
* Do not use the message window for the next message(s).
* Used when giving a prompt.
*/
void
dont_use_message_window(void)
{
#ifdef HAS_MESSAGE_WINDOW
popup_hide_message_win();
cmdline_row = Rows - 1;
#endif
}
/*
* Prepare for outputting characters in the command line.
*/
@@ -4073,6 +4086,7 @@ do_dialog(
}
#endif
dont_use_message_window();
oldState = State;
State = MODE_CONFIRM;
setmouse();