aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event/stream.h
diff options
context:
space:
mode:
authorerw7 <erw7.github@gmail.com>2019-04-28 18:46:48 +0900
committerJustin M. Keyes <justinkz@gmail.com>2019-04-28 11:46:48 +0200
commit8072f085d2edc254334af52261c6ff68d9143834 (patch)
treec40d4363047951fc97215a0e5ead755ce1a4edfd /src/nvim/event/stream.h
parentcf80fd9e02422f90ecb967aacf7a5549246b4689 (diff)
downloadrneovim-8072f085d2edc254334af52261c6ff68d9143834.tar.gz
rneovim-8072f085d2edc254334af52261c6ff68d9143834.tar.bz2
rneovim-8072f085d2edc254334af52261c6ff68d9143834.zip
win: stream_init() issue with tty on Windows #9884
ref #9825
Diffstat (limited to 'src/nvim/event/stream.h')
-rw-r--r--src/nvim/event/stream.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/event/stream.h b/src/nvim/event/stream.h
index 694dab6568..a5c33a66a2 100644
--- a/src/nvim/event/stream.h
+++ b/src/nvim/event/stream.h
@@ -36,6 +36,9 @@ struct stream {
uv_pipe_t pipe;
uv_tcp_t tcp;
uv_idle_t idle;
+#ifdef WIN32
+ uv_tty_t tty;
+#endif
} uv;
uv_stream_t *uvstream;
uv_buf_t uvbuf;