summaryrefslogtreecommitdiffstats
path: root/src/proto/terminal.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-30 19:38:21 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-30 19:38:21 +0200
commitb000e328efcf859d14454ffd241d44f6d14f300b (patch)
treef82e07a6c46fcd8a2cc61946a5943c336896d507 /src/proto/terminal.pro
parent12d93ee26d4290321ed0cc3d0493b966d1475a66 (diff)
patch 8.0.0821: cannot get the title and status of a terminal windowv8.0.0821
Problem: Cannot get the title and status of a terminal window. Solution: Implement term_gettitle() and term_getstatus().
Diffstat (limited to 'src/proto/terminal.pro')
-rw-r--r--src/proto/terminal.pro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/terminal.pro b/src/proto/terminal.pro
index 63cda59caf..24789293df 100644
--- a/src/proto/terminal.pro
+++ b/src/proto/terminal.pro
@@ -20,6 +20,8 @@ void f_term_getcursor(typval_T *argvars, typval_T *rettv);
void f_term_getjob(typval_T *argvars, typval_T *rettv);
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_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);