vim-patch:8.0.0722: screen is messed by timer up at inputlist() prompt

Problem:    Screen is messed by timer up at inputlist() prompt.
Solution:   Set state to ASKMORE. (closes vim/vim#1843)
c9041079a1
This commit is contained in:
Jan Edmund Lazo 2018-08-05 17:19:13 -04:00
parent 2b8792e303
commit fe6e4b3244

View File

@ -2479,7 +2479,7 @@ int prompt_for_number(int *mouse_used)
save_cmdline_row = cmdline_row;
cmdline_row = 0;
save_State = State;
State = CMDLINE;
State = ASKMORE; // prevents a screen update when using a timer
i = get_number(TRUE, mouse_used);
if (KeyTyped) {