summaryrefslogtreecommitdiff
path: root/src/proto/terminal.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-09-14 20:37:57 +0200
committerBram Moolenaar <Bram@vim.org>2017-09-14 20:37:57 +0200
commit69fbc9e1dab176f345719436cd89d854df0a2abd (patch)
treecb082b52c6e0e9a2bd99db92b83aa7269d90cdaa /src/proto/terminal.pro
parent38baa3e63427112d389de5e5942243414d9b1336 (diff)
downloadvim-git-69fbc9e1dab176f345719436cd89d854df0a2abd.tar.gz
patch 8.0.1108: cannot specify mappings for the terminal windowv8.0.1108
Problem: Cannot specify mappings for the terminal window. Solution: Add the :tmap command and associated code. (Jacob Askeland, closes #2073)
Diffstat (limited to 'src/proto/terminal.pro')
-rw-r--r--src/proto/terminal.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/terminal.pro b/src/proto/terminal.pro
index 639318d51..7f64b9006 100644
--- a/src/proto/terminal.pro
+++ b/src/proto/terminal.pro
@@ -7,10 +7,10 @@ int term_none_open(term_T *term);
int term_in_normal_mode(void);
void term_enter_job_mode(void);
int send_keys_to_term(term_T *term, int c, int typed);
-int use_terminal_cursor(void);
+int terminal_is_active(void);
cursorentry_T *term_get_cursor_shape(guicolor_T *fg, guicolor_T *bg);
int term_use_loop(void);
-int terminal_loop(void);
+int terminal_loop(int blocking);
void term_job_ended(job_T *job);
void term_channel_closed(channel_T *ch);
int term_update_window(win_T *wp);