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:
@@ -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();
|
||||
|
Reference in New Issue
Block a user