diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-10-20 21:09:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-10-20 21:09:35 +0200 |
commit | c842748302d33bcf41c6b796a43d9dbbf44cdc29 (patch) | |
tree | d16038ab394271bfe0e2765cdec768746d767378 /src/keymap.h | |
parent | 62dbdc4a5ae16900d17473dbfe3be3acea321bf0 (diff) | |
download | vim-git-c842748302d33bcf41c6b796a43d9dbbf44cdc29.tar.gz |
updated for version 7.3.343v7.3.343
Problem: No mouse support for urxvt.
Solution: Implement urxvt mouse support, also for > 252 columns. (Yiding
Jia)
Diffstat (limited to 'src/keymap.h')
-rw-r--r-- | src/keymap.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/keymap.h b/src/keymap.h index 16d128a88..8ec009387 100644 --- a/src/keymap.h +++ b/src/keymap.h @@ -92,13 +92,13 @@ */ #define KS_TEAROFF 244 -/* used for JSB term mouse */ +/* Used for JSB term mouse. */ #define KS_JSBTERM_MOUSE 243 -/* used a termcap entry that produces a normal character */ +/* Used a termcap entry that produces a normal character. */ #define KS_KEY 242 -/* Used for the qnx pterm mouse */ +/* Used for the qnx pterm mouse. */ #define KS_PTERM_MOUSE 241 /* Used for click in a tab pages label. */ @@ -107,6 +107,9 @@ /* Used for menu in a tab pages line. */ #define KS_TABMENU 239 +/* Used for the urxvt mouse. */ +#define KS_URXVT_MOUSE 238 + /* * Filler used after KS_SPECIAL and others */ |