0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 8.0.0744: terminal window does not use a pty

Problem:    A terminal window uses pipes instead of a pty.
Solution:   Add pty support.
This commit is contained in:
Bram Moolenaar
2017-07-22 18:04:08 +02:00
parent 825680f5f4
commit 5a1feb8091
8 changed files with 102 additions and 64 deletions

View File

@@ -1705,6 +1705,7 @@ typedef struct
char_u jo_io_name_buf[4][NUMBUFLEN];
char_u *jo_io_name[4]; /* not allocated! */
int jo_io_buf[4];
int jo_pty;
int jo_modifiable[4];
int jo_message[4];
channel_T *jo_channel;