diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-11 16:24:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-11 16:24:50 +0200 |
commit | e41e3b41f991bd610f889dea57676526704fea5f (patch) | |
tree | bfe0901e8daf63928bae6458eb9b4c319c027c05 /src/proto/terminal.pro | |
parent | f1237f18143d9fe5b2a6ce981dee415736858789 (diff) | |
download | vim-git-e41e3b41f991bd610f889dea57676526704fea5f.tar.gz |
patch 8.0.0898: can't use the alternate screen in a terminal windowv8.0.0898
Problem: Can't use the alternate screen in a terminal window.
Solution: Initialze the alternate screen. (Yasuhiro Matsumoto, closes
#1957) Add term_getaltscreen().
Diffstat (limited to 'src/proto/terminal.pro')
-rw-r--r-- | src/proto/terminal.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/terminal.pro b/src/proto/terminal.pro index 7b28c2862..a004d355e 100644 --- a/src/proto/terminal.pro +++ b/src/proto/terminal.pro @@ -17,6 +17,7 @@ void term_change_in_curbuf(void); int term_get_attr(buf_T *buf, linenr_T lnum, int col); char_u *term_get_status_text(term_T *term); int set_ref_in_term(int copyID); +void f_term_getaltscreen(typval_T *argvars, typval_T *rettv); void f_term_getattr(typval_T *argvars, typval_T *rettv); void f_term_getcursor(typval_T *argvars, typval_T *rettv); void f_term_getjob(typval_T *argvars, typval_T *rettv); |