diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2022-02-08 10:50:17 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2022-02-08 11:18:49 +0100 |
commit | 7813b48645bf2af11c2d18f4e4154a74d4dad662 (patch) | |
tree | 2057c29808d9fe953cdabbee40321a8f695cbdb8 /src/nvim/channel.c | |
parent | 40c36efdee105099c24fc4b07e9103bacee5a224 (diff) | |
download | rneovim-7813b48645bf2af11c2d18f4e4154a74d4dad662.tar.gz rneovim-7813b48645bf2af11c2d18f4e4154a74d4dad662.tar.bz2 rneovim-7813b48645bf2af11c2d18f4e4154a74d4dad662.zip |
feat(term): use vterm_output_set_callback()
Diffstat (limited to 'src/nvim/channel.c')
-rw-r--r-- | src/nvim/channel.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/channel.c b/src/nvim/channel.c index cd5134fe5f..d79c0acc4a 100644 --- a/src/nvim/channel.c +++ b/src/nvim/channel.c @@ -613,7 +613,6 @@ static void on_channel_output(Stream *stream, Channel *chan, RBuffer *buf, size_ } else { if (chan->term) { terminal_receive(chan->term, ptr, count); - terminal_flush_output(chan->term); } rbuffer_consumed(buf, count); |