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/eval.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/eval.c')
-rw-r--r-- | src/nvim/eval.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 4392ea306f..4de4b7a080 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -7469,7 +7469,6 @@ void ex_execute(exarg_T *eap) if (eap->cmdidx == CMD_echomsg) { msg_ext_set_kind("echomsg"); msg_attr(ga.ga_data, echo_attr); - ui_flush(); } else if (eap->cmdidx == CMD_echoerr) { // We don't want to abort following commands, restore did_emsg. int save_did_emsg = did_emsg; |