From: Benjamin R. Haskell <[email protected]>
This fixes the issue with mapping <C-MouseUp>/<C-MouseDown> for both
rxvt-unicode and uxterm. -- Ben
---
src/term.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/term.c b/src/term.c
index 2e0376c..205cd35 100644
--- a/src/term.c
+++ b/src/term.c
@@ -4763,6 +4763,8 @@ check_termcode(max_offset, buf, buflen)
modifiers |= MOD_MASK_SHIFT;
if (orig_mouse_code & MOUSE_CTRL)
modifiers |= MOD_MASK_CTRL;
+ if (wheel_code & MOUSE_CTRL)
+ modifiers |= MOD_MASK_CTRL;
if (orig_mouse_code & MOUSE_ALT)
modifiers |= MOD_MASK_ALT;
if (orig_num_clicks == 2)
--
1.7.1
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php