diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-09-01 10:18:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-01 10:18:14 +0200 |
commit | d9a873f278272bf1311179e73ae0d7fad2c00f81 (patch) | |
tree | e6f4df4a8958c8e8d34bee8225af594a62d9439c /src/nvim/cmdexpand.c | |
parent | dd8489c3992afbec425607965f8ab839e4aeb6b6 (diff) | |
parent | 5f92d9b345e11adb73df33dc22a8e656aca73b6c (diff) | |
download | rneovim-d9a873f278272bf1311179e73ae0d7fad2c00f81.tar.gz rneovim-d9a873f278272bf1311179e73ae0d7fad2c00f81.tar.bz2 rneovim-d9a873f278272bf1311179e73ae0d7fad2c00f81.zip |
Merge pull request #20038 from bfredl/unflush
perf(messages): don't call ui_flush() per message line in various places
Diffstat (limited to 'src/nvim/cmdexpand.c')
-rw-r--r-- | src/nvim/cmdexpand.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/cmdexpand.c b/src/nvim/cmdexpand.c index 1c35f28301..7180a8de46 100644 --- a/src/nvim/cmdexpand.c +++ b/src/nvim/cmdexpand.c @@ -717,7 +717,6 @@ int showmatches(expand_T *xp, int wildmenu) msg_clr_eos(); msg_putchar('\n'); } - ui_flush(); // show one line at a time if (got_int) { got_int = false; break; |