diff options
| author | bfredl <bjorn.linse@gmail.com> | 2023-02-10 20:09:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-10 20:09:14 +0100 |
| commit | 84328bae08e0694c2409b1506116275770830745 (patch) | |
| tree | 6a84d845cd9c8ec0100238b4be482051d88edfa9 /src/nvim/ex_cmds.c | |
| parent | e5d8220179f932ab9c9ef59996cab357a25eaaf8 (diff) | |
| parent | 30b29a36e80bfeed50bb6ea618401fe35100490f (diff) | |
| download | rneovim-84328bae08e0694c2409b1506116275770830745.tar.gz rneovim-84328bae08e0694c2409b1506116275770830745.tar.bz2 rneovim-84328bae08e0694c2409b1506116275770830745.zip | |
Merge pull request #22194 from bfredl/noflush
refactor(ui): remove some superfluous redraw and ui_flush() calls
Diffstat (limited to 'src/nvim/ex_cmds.c')
| -rw-r--r-- | src/nvim/ex_cmds.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 437a05f61d..ae7abfc5e7 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -1507,7 +1507,6 @@ void print_line(linenr_T lnum, int use_number, int list) print_line_no_prefix(lnum, use_number, list); if (save_silent) { msg_putchar('\n'); - ui_flush(); silent_mode = save_silent; } info_message = false; |