diff options
author | James McCoy <jamessan@jamessan.com> | 2022-02-08 19:26:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 19:26:38 -0500 |
commit | 19b2ad0518920a733dd7370808aa65ee62334986 (patch) | |
tree | 49b330d74cc692394a6ae02d18cb4024564c20dd /src/nvim/channel.c | |
parent | 0290889fa91813e005b8428957b43d038e95710b (diff) | |
parent | 7813b48645bf2af11c2d18f4e4154a74d4dad662 (diff) | |
download | rneovim-19b2ad0518920a733dd7370808aa65ee62334986.tar.gz rneovim-19b2ad0518920a733dd7370808aa65ee62334986.tar.bz2 rneovim-19b2ad0518920a733dd7370808aa65ee62334986.zip |
Merge pull request #17332 from cryptomilk/asn-vterm-output-callback
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); |