summaryrefslogtreecommitdiffstats
path: root/src/proto/terminal.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-03 13:51:25 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-03 13:51:25 +0200
commit7c9aec4ac86ccc455c0859d9393253141e3f77b6 (patch)
treee03624a977c4f3d9b040a866356dbc8245036603 /src/proto/terminal.pro
parentd8dc1799377027be622d8571545658b20042e92e (diff)
patch 8.0.0846: cannot get the name of the pty of a jobv8.0.0846
Problem: Cannot get the name of the pty of a job. Solution: Add the "tty" entry to the job info. (Ozaki Kiichi, closes #1920) Add the term_gettty() function.
Diffstat (limited to 'src/proto/terminal.pro')
-rw-r--r--src/proto/terminal.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/terminal.pro b/src/proto/terminal.pro
index 556f9dd61f..157b6aaafb 100644
--- a/src/proto/terminal.pro
+++ b/src/proto/terminal.pro
@@ -23,6 +23,7 @@ void f_term_getline(typval_T *argvars, typval_T *rettv);
void f_term_getsize(typval_T *argvars, typval_T *rettv);
void f_term_getstatus(typval_T *argvars, typval_T *rettv);
void f_term_gettitle(typval_T *argvars, typval_T *rettv);
+void f_term_gettty(typval_T *argvars, typval_T *rettv);
void f_term_list(typval_T *argvars, typval_T *rettv);
void f_term_scrape(typval_T *argvars, typval_T *rettv);
void f_term_sendkeys(typval_T *argvars, typval_T *rettv);