diff options
author | Daniel Hahler <git@thequod.de> | 2019-09-29 03:06:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-29 03:06:36 +0200 |
commit | 34d55f86077e8a937c1ac1b0a0c551a5968fa7f8 (patch) | |
tree | b5f9bcb470292431b853b7c4f8d20edfac23b1c4 /src | |
parent | e933426299b44db6715f6f61ab76aee57478110e (diff) | |
download | rneovim-34d55f86077e8a937c1ac1b0a0c551a5968fa7f8.tar.gz rneovim-34d55f86077e8a937c1ac1b0a0c551a5968fa7f8.tar.bz2 rneovim-34d55f86077e8a937c1ac1b0a0c551a5968fa7f8.zip |
terminfo_start: keep first flushing of ui buffer (#11118)
Initially done in 3626d2107 (#11074, for #11062), it was reverted then
in 445f2f409 (#11083, which added flushing later).
But it is still required here to avoid the reporting of the background
response with urxvt/kitty (`nvim -u NONE -cq`).
Apparently I've tested this not enough with 445f2f409 (probably only within tmux).
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/tui/tui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index 55c4a955c2..0c282a3f1f 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -312,6 +312,7 @@ static void terminfo_start(UI *ui) uv_pipe_init(&data->write_loop, &data->output_handle.pipe, 0); uv_pipe_open(&data->output_handle.pipe, data->out_fd); } + flush_buf(ui); } static void terminfo_stop(UI *ui) |