diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-02-09 20:56:30 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-02-09 21:39:56 +0100 |
commit | 30b29a36e80bfeed50bb6ea618401fe35100490f (patch) | |
tree | 54aa923c968f95a89ff3c8c10ba4fdc7d26dadff /src/nvim/ex_docmd.c | |
parent | 257765d9e0f20dc060f496ed400b16203e44dc9c (diff) | |
download | rneovim-30b29a36e80bfeed50bb6ea618401fe35100490f.tar.gz rneovim-30b29a36e80bfeed50bb6ea618401fe35100490f.tar.bz2 rneovim-30b29a36e80bfeed50bb6ea618401fe35100490f.zip |
refactor(ui): remove some superfluous ui_flush() calls
- <expr> mapping has no business saving and restoring the
low-level UI cursor. The cursor will be put in a reasonable
position after input is processed, chill out.
- TUI handles output needed for suspend
- vgetc() family of function does flushing
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index a24e8458a6..017787f238 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -4838,13 +4838,9 @@ static void ex_stop(exarg_T *eap) } apply_autocmds(EVENT_VIMSUSPEND, NULL, NULL, false, NULL); - // TODO(bfredl): the TUI should do this on suspend - ui_cursor_goto(Rows - 1, 0); - ui_call_grid_scroll(1, 0, Rows, 0, Columns, 1, 0); + ui_call_suspend(); ui_flush(); - ui_call_suspend(); // call machine specific function - ui_flush(); maketitle(); resettitle(); // force updating the title ui_refresh(); // may have resized window |