aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/tui/input.h
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2024-06-01 09:53:45 +0200
committerGitHub <noreply@github.com>2024-06-01 09:53:45 +0200
commit2008fe7b85a8c03cbff3ed51c5715ddf5cb555fd (patch)
tree3fe96507019c1d493f2e7f5212c35f063195b29d /src/nvim/tui/input.h
parent50f6d364c661b88a1edc5ffc8e284d1c0ff70810 (diff)
parentc13c50b752dca322a5ec77dea6188c9e3694549b (diff)
downloadrneovim-2008fe7b85a8c03cbff3ed51c5715ddf5cb555fd.tar.gz
rneovim-2008fe7b85a8c03cbff3ed51c5715ddf5cb555fd.tar.bz2
rneovim-2008fe7b85a8c03cbff3ed51c5715ddf5cb555fd.zip
Merge pull request #29106 from bfredl/rwstream
refactor(io): separate types for read and write streams
Diffstat (limited to 'src/nvim/tui/input.h')
-rw-r--r--src/nvim/tui/input.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tui/input.h b/src/nvim/tui/input.h
index bf6d0f2978..646fbdd16a 100644
--- a/src/nvim/tui/input.h
+++ b/src/nvim/tui/input.h
@@ -33,7 +33,7 @@ typedef struct {
TermKey_Terminfo_Getstr_Hook *tk_ti_hook_fn; ///< libtermkey terminfo hook
uv_timer_t timer_handle;
Loop *loop;
- Stream read_stream;
+ RStream read_stream;
RBuffer *key_buffer;
TUIData *tui_data;
} TermInput;