0
0
mirror of https://github.com/vim/vim.git synced 2025-10-05 05:34:07 -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

@@ -4964,7 +4964,7 @@ job_io_file_open(
}
void
mch_start_job(char *cmd, job_T *job, jobopt_T *options)
mch_job_start(char *cmd, job_T *job, jobopt_T *options)
{
STARTUPINFO si;
PROCESS_INFORMATION pi;