summaryrefslogtreecommitdiffstats
path: root/src/proto/terminal.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-03 21:19:41 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-03 21:19:41 +0100
commit1e814bc017907209a66af82f8fb76c6d1fc324aa (patch)
tree05f1e944d8ae05ca878842a5ed49b551852bcbd8 /src/proto/terminal.pro
parente890b9f5dd3ae76e301b2df7f3151366acaba5dc (diff)
patch 8.1.2248: CTRL-W dot does not work when modifyOtherKeys is enabledv8.1.2248
Problem: CTRL-W dot does not work in a terminal when modifyOtherKeys is enabled. Solution: Use the modifier when needed. Pass the modifier along with the key to avoid mistakes.
Diffstat (limited to 'src/proto/terminal.pro')
-rw-r--r--src/proto/terminal.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/terminal.pro b/src/proto/terminal.pro
index 52bb1b8d4a..5206addd45 100644
--- a/src/proto/terminal.pro
+++ b/src/proto/terminal.pro
@@ -13,7 +13,7 @@ int term_try_stop_job(buf_T *buf);
int term_check_timers(int next_due_arg, proftime_T *now);
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 send_keys_to_term(term_T *term, int c, int modmask, int typed);
int terminal_is_active(void);
cursorentry_T *term_get_cursor_shape(guicolor_T *fg, guicolor_T *bg);
int term_use_loop(void);