diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-10 15:24:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 15:24:36 +0800 |
commit | d5a85d737aa2a5c3a64ef0aa5b01672b7ed49c09 (patch) | |
tree | d3ade990979b1c8f0ad3890fc8a6eb5b90848f68 /src/nvim/state.c | |
parent | bf5cf8ae82f2a164fba6ae063e0f5b7cb7c1df7b (diff) | |
download | rneovim-d5a85d737aa2a5c3a64ef0aa5b01672b7ed49c09.tar.gz rneovim-d5a85d737aa2a5c3a64ef0aa5b01672b7ed49c09.tar.bz2 rneovim-d5a85d737aa2a5c3a64ef0aa5b01672b7ed49c09.zip |
fix(f_wait): flush UI before blocking (#25962)
Diffstat (limited to 'src/nvim/state.c')
-rw-r--r-- | src/nvim/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/state.c b/src/nvim/state.c index 61e8d8d2ff..d2466e4248 100644 --- a/src/nvim/state.c +++ b/src/nvim/state.c @@ -70,7 +70,7 @@ getkey: update_screen(); setcursor(); // put cursor back where it belongs } - // Flush screen updates before blocking + // Flush screen updates before blocking. ui_flush(); // Call `os_inchar` directly to block for events or user input without // consuming anything from `input_buffer`(os/input.c) or calling the |