summaryrefslogtreecommitdiffstats
path: root/src/proto/terminal.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-06 14:57:49 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-06 14:57:49 +0200
commit6d8197485dc84532e37aced2c39292bff374200d (patch)
treec0aeccff87e3a4b26805d099a9d952a1b6bee773 /src/proto/terminal.pro
parent39d21e3c30f3391f3b27f5ddb7e1ad411bdb8f2e (diff)
patch 8.0.0877: using CTRL-\ CTRL-N in terminal is inconsistentv8.0.0877
Problem: Using CTRL-\ CTRL-N in terminal is inconsistent. Solution: Stay in Normal mode.
Diffstat (limited to 'src/proto/terminal.pro')
-rw-r--r--src/proto/terminal.pro6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proto/terminal.pro b/src/proto/terminal.pro
index fbd17eddee..8d02968f55 100644
--- a/src/proto/terminal.pro
+++ b/src/proto/terminal.pro
@@ -3,10 +3,10 @@ void ex_terminal(exarg_T *eap);
void free_terminal(buf_T *buf);
void write_to_term(buf_T *buffer, char_u *msg, channel_T *channel);
int term_job_running(term_T *term);
-int term_in_terminal_mode(void);
-void term_leave_terminal_mode(void);
+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 term_use_loop(int once);
+int term_use_loop(void);
int terminal_loop(void);
void term_job_ended(job_T *job);
void term_channel_closed(channel_T *ch);