mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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:
parent
2b8792e303
commit
fe6e4b3244
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user