diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-03 21:19:41 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-03 21:19:41 +0100 |
commit | 1e814bc017907209a66af82f8fb76c6d1fc324aa (patch) | |
tree | 05f1e944d8ae05ca878842a5ed49b551852bcbd8 /src/proto/terminal.pro | |
parent | e890b9f5dd3ae76e301b2df7f3151366acaba5dc (diff) | |
download | vim-git-1e814bc017907209a66af82f8fb76c6d1fc324aa.tar.gz |
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.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/terminal.pro b/src/proto/terminal.pro index 52bb1b8d4..5206addd4 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); |