Mercurial > vim
annotate src/keymap.h @ 15285:f6fd8f8a6583
Added tag v8.1.0650 for changeset c31e4b1fa4fd9645782afdfe48e1bf0df3253340
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 28 Dec 2018 18:45:05 +0100 |
parents | 044337cbf854 |
children | a72ad8a8b249 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 */ | |
8 | |
9 /* | |
595 | 10 * Keycode definitions for special keys. |
11 * | |
12 * Any special key code sequences are replaced by these codes. | |
13 */ | |
14 | |
15 /* | |
7 | 16 * For MSDOS some keys produce codes larger than 0xff. They are split into two |
17 * chars, the first one is K_NUL (same value used in term.h). | |
18 */ | |
19 #define K_NUL (0xce) /* for MSDOS: special key follows */ | |
20 | |
21 /* | |
22 * K_SPECIAL is the first byte of a special key code and is always followed by | |
23 * two bytes. | |
24 * The second byte can have any value. ASCII is used for normal termcap | |
25 * entries, 0x80 and higher for special keys, see below. | |
26 * The third byte is guaranteed to be between 0x02 and 0x7f. | |
27 */ | |
28 | |
29 #define K_SPECIAL (0x80) | |
30 | |
31 /* | |
32 * Positive characters are "normal" characters. | |
33 * Negative characters are special key codes. Only characters below -0x200 | |
34 * are used to so that the absolute value can't be mistaken for a single-byte | |
35 * character. | |
36 */ | |
37 #define IS_SPECIAL(c) ((c) < 0) | |
38 | |
39 /* | |
40 * Characters 0x0100 - 0x01ff have a special meaning for abbreviations. | |
41 * Multi-byte characters also have ABBR_OFF added, thus are above 0x0200. | |
42 */ | |
43 #define ABBR_OFF 0x100 | |
44 | |
45 /* | |
46 * NUL cannot be in the input string, therefore it is replaced by | |
47 * K_SPECIAL KS_ZERO KE_FILLER | |
48 */ | |
49 #define KS_ZERO 255 | |
50 | |
51 /* | |
52 * K_SPECIAL cannot be in the input string, therefore it is replaced by | |
53 * K_SPECIAL KS_SPECIAL KE_FILLER | |
54 */ | |
55 #define KS_SPECIAL 254 | |
56 | |
57 /* | |
58 * KS_EXTRA is used for keys that have no termcap name | |
59 * K_SPECIAL KS_EXTRA KE_xxx | |
60 */ | |
61 #define KS_EXTRA 253 | |
62 | |
63 /* | |
64 * KS_MODIFIER is used when a modifier is given for a (special) key | |
65 * K_SPECIAL KS_MODIFIER bitmask | |
66 */ | |
67 #define KS_MODIFIER 252 | |
68 | |
69 /* | |
70 * These are used for the GUI | |
71 * K_SPECIAL KS_xxx KE_FILLER | |
72 */ | |
73 #define KS_MOUSE 251 | |
74 #define KS_MENU 250 | |
75 #define KS_VER_SCROLLBAR 249 | |
76 #define KS_HOR_SCROLLBAR 248 | |
77 | |
78 /* | |
79 * These are used for DEC mouse | |
80 */ | |
81 #define KS_NETTERM_MOUSE 247 | |
82 #define KS_DEC_MOUSE 246 | |
83 | |
84 /* | |
85 * Used for switching Select mode back on after a mapping or menu. | |
86 */ | |
87 #define KS_SELECT 245 | |
88 #define K_SELECT_STRING (char_u *)"\200\365X" | |
89 | |
90 /* | |
91 * Used for tearing off a menu. | |
92 */ | |
93 #define KS_TEAROFF 244 | |
94 | |
3145 | 95 /* Used for JSB term mouse. */ |
7 | 96 #define KS_JSBTERM_MOUSE 243 |
97 | |
3145 | 98 /* Used a termcap entry that produces a normal character. */ |
7 | 99 #define KS_KEY 242 |
100 | |
3145 | 101 /* Used for the qnx pterm mouse. */ |
7 | 102 #define KS_PTERM_MOUSE 241 |
103 | |
685 | 104 /* Used for click in a tab pages label. */ |
105 #define KS_TABLINE 240 | |
106 | |
687 | 107 /* Used for menu in a tab pages line. */ |
108 #define KS_TABMENU 239 | |
109 | |
3145 | 110 /* Used for the urxvt mouse. */ |
111 #define KS_URXVT_MOUSE 238 | |
112 | |
3746 | 113 /* Used for the sgr mouse. */ |
114 #define KS_SGR_MOUSE 237 | |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
115 #define KS_SGR_MOUSE_RELEASE 236 |
3746 | 116 |
7 | 117 /* |
118 * Filler used after KS_SPECIAL and others | |
119 */ | |
120 #define KE_FILLER ('X') | |
121 | |
122 /* | |
123 * translation of three byte code "K_SPECIAL a b" into int "K_xxx" and back | |
124 */ | |
125 #define TERMCAP2KEY(a, b) (-((a) + ((int)(b) << 8))) | |
126 #define KEY2TERMCAP0(x) ((-(x)) & 0xff) | |
127 #define KEY2TERMCAP1(x) (((unsigned)(-(x)) >> 8) & 0xff) | |
128 | |
129 /* | |
130 * get second or third byte when translating special key code into three bytes | |
131 */ | |
132 #define K_SECOND(c) ((c) == K_SPECIAL ? KS_SPECIAL : (c) == NUL ? KS_ZERO : KEY2TERMCAP0(c)) | |
133 | |
134 #define K_THIRD(c) (((c) == K_SPECIAL || (c) == NUL) ? KE_FILLER : KEY2TERMCAP1(c)) | |
135 | |
136 /* | |
137 * get single int code from second byte after K_SPECIAL | |
138 */ | |
139 #define TO_SPECIAL(a, b) ((a) == KS_SPECIAL ? K_SPECIAL : (a) == KS_ZERO ? K_ZERO : TERMCAP2KEY(a, b)) | |
140 | |
141 /* | |
142 * Codes for keys that do not have a termcap name. | |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
143 * The numbers are fixed to make sure that recorded key sequences remain valid. |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
144 * Add new entries at the end, not halfway. |
7 | 145 * |
146 * K_SPECIAL KS_EXTRA KE_xxx | |
147 */ | |
148 enum key_extra | |
149 { | |
150 KE_NAME = 3 /* name of this terminal entry */ | |
151 | |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
152 , KE_S_UP = 4 /* shift-up */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
153 , KE_S_DOWN = 5 /* shift-down */ |
7 | 154 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
155 , KE_S_F1 = 6 /* shifted function keys */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
156 , KE_S_F2 = 7 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
157 , KE_S_F3 = 8 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
158 , KE_S_F4 = 9 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
159 , KE_S_F5 = 10 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
160 , KE_S_F6 = 11 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
161 , KE_S_F7 = 12 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
162 , KE_S_F8 = 13 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
163 , KE_S_F9 = 14 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
164 , KE_S_F10 = 15 |
7 | 165 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
166 , KE_S_F11 = 16 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
167 , KE_S_F12 = 17 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
168 , KE_S_F13 = 18 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
169 , KE_S_F14 = 19 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
170 , KE_S_F15 = 20 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
171 , KE_S_F16 = 21 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
172 , KE_S_F17 = 22 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
173 , KE_S_F18 = 23 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
174 , KE_S_F19 = 24 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
175 , KE_S_F20 = 25 |
7 | 176 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
177 , KE_S_F21 = 26 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
178 , KE_S_F22 = 27 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
179 , KE_S_F23 = 28 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
180 , KE_S_F24 = 29 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
181 , KE_S_F25 = 30 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
182 , KE_S_F26 = 31 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
183 , KE_S_F27 = 32 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
184 , KE_S_F28 = 33 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
185 , KE_S_F29 = 34 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
186 , KE_S_F30 = 35 |
7 | 187 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
188 , KE_S_F31 = 36 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
189 , KE_S_F32 = 37 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
190 , KE_S_F33 = 38 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
191 , KE_S_F34 = 39 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
192 , KE_S_F35 = 40 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
193 , KE_S_F36 = 41 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
194 , KE_S_F37 = 42 |
7 | 195 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
196 , KE_MOUSE = 43 /* mouse event start */ |
7 | 197 |
198 /* | |
199 * Symbols for pseudo keys which are translated from the real key symbols | |
200 * above. | |
201 */ | |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
202 , KE_LEFTMOUSE = 44 /* Left mouse button click */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
203 , KE_LEFTDRAG = 45 /* Drag with left mouse button down */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
204 , KE_LEFTRELEASE = 46 /* Left mouse button release */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
205 , KE_MIDDLEMOUSE = 47 /* Middle mouse button click */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
206 , KE_MIDDLEDRAG = 48 /* Drag with middle mouse button down */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
207 , KE_MIDDLERELEASE = 49 /* Middle mouse button release */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
208 , KE_RIGHTMOUSE = 50 /* Right mouse button click */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
209 , KE_RIGHTDRAG = 51 /* Drag with right mouse button down */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
210 , KE_RIGHTRELEASE = 52 /* Right mouse button release */ |
7 | 211 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
212 , KE_IGNORE = 53 /* Ignored mouse drag/release */ |
7 | 213 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
214 , KE_TAB = 54 /* unshifted TAB key */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
215 , KE_S_TAB_OLD = 55 /* shifted TAB key (no longer used) */ |
7 | 216 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
217 , KE_SNIFF_UNUSED = 56 /* obsolete */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
218 , KE_XF1 = 57 /* extra vt100 function keys for xterm */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
219 , KE_XF2 = 58 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
220 , KE_XF3 = 59 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
221 , KE_XF4 = 60 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
222 , KE_XEND = 61 /* extra (vt100) end key for xterm */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
223 , KE_ZEND = 62 /* extra (vt100) end key for xterm */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
224 , KE_XHOME = 63 /* extra (vt100) home key for xterm */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
225 , KE_ZHOME = 64 /* extra (vt100) home key for xterm */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
226 , KE_XUP = 65 /* extra vt100 cursor keys for xterm */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
227 , KE_XDOWN = 66 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
228 , KE_XLEFT = 67 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
229 , KE_XRIGHT = 68 |
7 | 230 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
231 , KE_LEFTMOUSE_NM = 69 /* non-mappable Left mouse button click */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
232 , KE_LEFTRELEASE_NM = 70 /* non-mappable left mouse button release */ |
7 | 233 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
234 , KE_S_XF1 = 71 /* vt100 shifted function keys for xterm */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
235 , KE_S_XF2 = 72 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
236 , KE_S_XF3 = 73 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
237 , KE_S_XF4 = 74 |
7 | 238 |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
1380
diff
changeset
|
239 /* NOTE: The scroll wheel events are inverted: i.e. UP is the same as |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
1380
diff
changeset
|
240 * moving the actual scroll wheel down, LEFT is the same as moving the |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
1380
diff
changeset
|
241 * scroll wheel right. */ |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
242 , KE_MOUSEDOWN = 75 /* scroll wheel pseudo-button Down */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
243 , KE_MOUSEUP = 76 /* scroll wheel pseudo-button Up */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
244 , KE_MOUSELEFT = 77 /* scroll wheel pseudo-button Left */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
245 , KE_MOUSERIGHT = 78 /* scroll wheel pseudo-button Right */ |
7 | 246 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
247 , KE_KINS = 79 /* keypad Insert key */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
248 , KE_KDEL = 80 /* keypad Delete key */ |
7 | 249 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
250 , KE_CSI = 81 /* CSI typed directly */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
251 , KE_SNR = 82 /* <SNR> */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
252 , KE_PLUG = 83 /* <Plug> */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
253 , KE_CMDWIN = 84 /* open command-line window from Command-line Mode */ |
7 | 254 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
255 , KE_C_LEFT = 85 /* control-left */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
256 , KE_C_RIGHT = 86 /* control-right */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
257 , KE_C_HOME = 87 /* control-home */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
258 , KE_C_END = 88 /* control-end */ |
7 | 259 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
260 , KE_X1MOUSE = 89 /* X1/X2 mouse-buttons */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
261 , KE_X1DRAG = 90 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
262 , KE_X1RELEASE = 91 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
263 , KE_X2MOUSE = 92 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
264 , KE_X2DRAG = 93 |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
265 , KE_X2RELEASE = 94 |
7 | 266 |
11629
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
267 , KE_DROP = 95 /* DnD data is available */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
268 , KE_CURSORHOLD = 96 /* CursorHold event */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
269 , KE_NOP = 97 /* doesn't do something */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
270 , KE_FOCUSGAINED = 98 /* focus gained */ |
1a6daa73590a
patch 8.0.0697: recorded key sequences may become invalid
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
271 , KE_FOCUSLOST = 99 /* focus lost */ |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
272 , KE_MOUSEMOVE = 100 /* mouse moved with no button down */ |
13829
044337cbf854
patch 8.0.1786: no test for 'termwinkey'
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
273 , KE_CANCEL = 101 /* return from vgetc() */ |
7 | 274 }; |
275 | |
276 /* | |
277 * the three byte codes are replaced with the following int when using vgetc() | |
278 */ | |
279 #define K_ZERO TERMCAP2KEY(KS_ZERO, KE_FILLER) | |
280 | |
281 #define K_UP TERMCAP2KEY('k', 'u') | |
282 #define K_DOWN TERMCAP2KEY('k', 'd') | |
283 #define K_LEFT TERMCAP2KEY('k', 'l') | |
284 #define K_RIGHT TERMCAP2KEY('k', 'r') | |
285 #define K_S_UP TERMCAP2KEY(KS_EXTRA, KE_S_UP) | |
286 #define K_S_DOWN TERMCAP2KEY(KS_EXTRA, KE_S_DOWN) | |
287 #define K_S_LEFT TERMCAP2KEY('#', '4') | |
288 #define K_C_LEFT TERMCAP2KEY(KS_EXTRA, KE_C_LEFT) | |
289 #define K_S_RIGHT TERMCAP2KEY('%', 'i') | |
290 #define K_C_RIGHT TERMCAP2KEY(KS_EXTRA, KE_C_RIGHT) | |
291 #define K_S_HOME TERMCAP2KEY('#', '2') | |
292 #define K_C_HOME TERMCAP2KEY(KS_EXTRA, KE_C_HOME) | |
293 #define K_S_END TERMCAP2KEY('*', '7') | |
294 #define K_C_END TERMCAP2KEY(KS_EXTRA, KE_C_END) | |
295 #define K_TAB TERMCAP2KEY(KS_EXTRA, KE_TAB) | |
296 #define K_S_TAB TERMCAP2KEY('k', 'B') | |
297 | |
298 /* extra set of function keys F1-F4, for vt100 compatible xterm */ | |
299 #define K_XF1 TERMCAP2KEY(KS_EXTRA, KE_XF1) | |
300 #define K_XF2 TERMCAP2KEY(KS_EXTRA, KE_XF2) | |
301 #define K_XF3 TERMCAP2KEY(KS_EXTRA, KE_XF3) | |
302 #define K_XF4 TERMCAP2KEY(KS_EXTRA, KE_XF4) | |
303 | |
180 | 304 /* extra set of cursor keys for vt100 compatible xterm */ |
305 #define K_XUP TERMCAP2KEY(KS_EXTRA, KE_XUP) | |
306 #define K_XDOWN TERMCAP2KEY(KS_EXTRA, KE_XDOWN) | |
307 #define K_XLEFT TERMCAP2KEY(KS_EXTRA, KE_XLEFT) | |
308 #define K_XRIGHT TERMCAP2KEY(KS_EXTRA, KE_XRIGHT) | |
309 | |
7 | 310 #define K_F1 TERMCAP2KEY('k', '1') /* function keys */ |
311 #define K_F2 TERMCAP2KEY('k', '2') | |
312 #define K_F3 TERMCAP2KEY('k', '3') | |
313 #define K_F4 TERMCAP2KEY('k', '4') | |
314 #define K_F5 TERMCAP2KEY('k', '5') | |
315 #define K_F6 TERMCAP2KEY('k', '6') | |
316 #define K_F7 TERMCAP2KEY('k', '7') | |
317 #define K_F8 TERMCAP2KEY('k', '8') | |
318 #define K_F9 TERMCAP2KEY('k', '9') | |
319 #define K_F10 TERMCAP2KEY('k', ';') | |
320 | |
321 #define K_F11 TERMCAP2KEY('F', '1') | |
322 #define K_F12 TERMCAP2KEY('F', '2') | |
323 #define K_F13 TERMCAP2KEY('F', '3') | |
324 #define K_F14 TERMCAP2KEY('F', '4') | |
325 #define K_F15 TERMCAP2KEY('F', '5') | |
326 #define K_F16 TERMCAP2KEY('F', '6') | |
327 #define K_F17 TERMCAP2KEY('F', '7') | |
328 #define K_F18 TERMCAP2KEY('F', '8') | |
329 #define K_F19 TERMCAP2KEY('F', '9') | |
330 #define K_F20 TERMCAP2KEY('F', 'A') | |
331 | |
332 #define K_F21 TERMCAP2KEY('F', 'B') | |
333 #define K_F22 TERMCAP2KEY('F', 'C') | |
334 #define K_F23 TERMCAP2KEY('F', 'D') | |
335 #define K_F24 TERMCAP2KEY('F', 'E') | |
336 #define K_F25 TERMCAP2KEY('F', 'F') | |
337 #define K_F26 TERMCAP2KEY('F', 'G') | |
338 #define K_F27 TERMCAP2KEY('F', 'H') | |
339 #define K_F28 TERMCAP2KEY('F', 'I') | |
340 #define K_F29 TERMCAP2KEY('F', 'J') | |
341 #define K_F30 TERMCAP2KEY('F', 'K') | |
342 | |
343 #define K_F31 TERMCAP2KEY('F', 'L') | |
344 #define K_F32 TERMCAP2KEY('F', 'M') | |
345 #define K_F33 TERMCAP2KEY('F', 'N') | |
346 #define K_F34 TERMCAP2KEY('F', 'O') | |
347 #define K_F35 TERMCAP2KEY('F', 'P') | |
348 #define K_F36 TERMCAP2KEY('F', 'Q') | |
349 #define K_F37 TERMCAP2KEY('F', 'R') | |
350 | |
351 /* extra set of shifted function keys F1-F4, for vt100 compatible xterm */ | |
352 #define K_S_XF1 TERMCAP2KEY(KS_EXTRA, KE_S_XF1) | |
353 #define K_S_XF2 TERMCAP2KEY(KS_EXTRA, KE_S_XF2) | |
354 #define K_S_XF3 TERMCAP2KEY(KS_EXTRA, KE_S_XF3) | |
355 #define K_S_XF4 TERMCAP2KEY(KS_EXTRA, KE_S_XF4) | |
356 | |
357 #define K_S_F1 TERMCAP2KEY(KS_EXTRA, KE_S_F1) /* shifted func. keys */ | |
358 #define K_S_F2 TERMCAP2KEY(KS_EXTRA, KE_S_F2) | |
359 #define K_S_F3 TERMCAP2KEY(KS_EXTRA, KE_S_F3) | |
360 #define K_S_F4 TERMCAP2KEY(KS_EXTRA, KE_S_F4) | |
361 #define K_S_F5 TERMCAP2KEY(KS_EXTRA, KE_S_F5) | |
362 #define K_S_F6 TERMCAP2KEY(KS_EXTRA, KE_S_F6) | |
363 #define K_S_F7 TERMCAP2KEY(KS_EXTRA, KE_S_F7) | |
364 #define K_S_F8 TERMCAP2KEY(KS_EXTRA, KE_S_F8) | |
365 #define K_S_F9 TERMCAP2KEY(KS_EXTRA, KE_S_F9) | |
366 #define K_S_F10 TERMCAP2KEY(KS_EXTRA, KE_S_F10) | |
367 | |
368 #define K_S_F11 TERMCAP2KEY(KS_EXTRA, KE_S_F11) | |
369 #define K_S_F12 TERMCAP2KEY(KS_EXTRA, KE_S_F12) | |
377 | 370 /* K_S_F13 to K_S_F37 are currently not used */ |
7 | 371 |
372 #define K_HELP TERMCAP2KEY('%', '1') | |
373 #define K_UNDO TERMCAP2KEY('&', '8') | |
374 | |
375 #define K_BS TERMCAP2KEY('k', 'b') | |
376 | |
377 #define K_INS TERMCAP2KEY('k', 'I') | |
378 #define K_KINS TERMCAP2KEY(KS_EXTRA, KE_KINS) | |
379 #define K_DEL TERMCAP2KEY('k', 'D') | |
380 #define K_KDEL TERMCAP2KEY(KS_EXTRA, KE_KDEL) | |
381 #define K_HOME TERMCAP2KEY('k', 'h') | |
382 #define K_KHOME TERMCAP2KEY('K', '1') /* keypad home (upper left) */ | |
383 #define K_XHOME TERMCAP2KEY(KS_EXTRA, KE_XHOME) | |
230 | 384 #define K_ZHOME TERMCAP2KEY(KS_EXTRA, KE_ZHOME) |
7 | 385 #define K_END TERMCAP2KEY('@', '7') |
386 #define K_KEND TERMCAP2KEY('K', '4') /* keypad end (lower left) */ | |
387 #define K_XEND TERMCAP2KEY(KS_EXTRA, KE_XEND) | |
230 | 388 #define K_ZEND TERMCAP2KEY(KS_EXTRA, KE_ZEND) |
7 | 389 #define K_PAGEUP TERMCAP2KEY('k', 'P') |
390 #define K_PAGEDOWN TERMCAP2KEY('k', 'N') | |
391 #define K_KPAGEUP TERMCAP2KEY('K', '3') /* keypad pageup (upper R.) */ | |
392 #define K_KPAGEDOWN TERMCAP2KEY('K', '5') /* keypad pagedown (lower R.) */ | |
393 | |
394 #define K_KPLUS TERMCAP2KEY('K', '6') /* keypad plus */ | |
395 #define K_KMINUS TERMCAP2KEY('K', '7') /* keypad minus */ | |
396 #define K_KDIVIDE TERMCAP2KEY('K', '8') /* keypad / */ | |
397 #define K_KMULTIPLY TERMCAP2KEY('K', '9') /* keypad * */ | |
398 #define K_KENTER TERMCAP2KEY('K', 'A') /* keypad Enter */ | |
36 | 399 #define K_KPOINT TERMCAP2KEY('K', 'B') /* keypad . or ,*/ |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
400 #define K_PS TERMCAP2KEY('P', 'S') /* paste start */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
401 #define K_PE TERMCAP2KEY('P', 'E') /* paste end */ |
7 | 402 |
403 #define K_K0 TERMCAP2KEY('K', 'C') /* keypad 0 */ | |
404 #define K_K1 TERMCAP2KEY('K', 'D') /* keypad 1 */ | |
405 #define K_K2 TERMCAP2KEY('K', 'E') /* keypad 2 */ | |
406 #define K_K3 TERMCAP2KEY('K', 'F') /* keypad 3 */ | |
407 #define K_K4 TERMCAP2KEY('K', 'G') /* keypad 4 */ | |
408 #define K_K5 TERMCAP2KEY('K', 'H') /* keypad 5 */ | |
409 #define K_K6 TERMCAP2KEY('K', 'I') /* keypad 6 */ | |
410 #define K_K7 TERMCAP2KEY('K', 'J') /* keypad 7 */ | |
411 #define K_K8 TERMCAP2KEY('K', 'K') /* keypad 8 */ | |
412 #define K_K9 TERMCAP2KEY('K', 'L') /* keypad 9 */ | |
413 | |
414 #define K_MOUSE TERMCAP2KEY(KS_MOUSE, KE_FILLER) | |
415 #define K_MENU TERMCAP2KEY(KS_MENU, KE_FILLER) | |
416 #define K_VER_SCROLLBAR TERMCAP2KEY(KS_VER_SCROLLBAR, KE_FILLER) | |
417 #define K_HOR_SCROLLBAR TERMCAP2KEY(KS_HOR_SCROLLBAR, KE_FILLER) | |
418 | |
419 #define K_NETTERM_MOUSE TERMCAP2KEY(KS_NETTERM_MOUSE, KE_FILLER) | |
420 #define K_DEC_MOUSE TERMCAP2KEY(KS_DEC_MOUSE, KE_FILLER) | |
421 #define K_JSBTERM_MOUSE TERMCAP2KEY(KS_JSBTERM_MOUSE, KE_FILLER) | |
422 #define K_PTERM_MOUSE TERMCAP2KEY(KS_PTERM_MOUSE, KE_FILLER) | |
3273 | 423 #define K_URXVT_MOUSE TERMCAP2KEY(KS_URXVT_MOUSE, KE_FILLER) |
3746 | 424 #define K_SGR_MOUSE TERMCAP2KEY(KS_SGR_MOUSE, KE_FILLER) |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
10644
diff
changeset
|
425 #define K_SGR_MOUSERELEASE TERMCAP2KEY(KS_SGR_MOUSE_RELEASE, KE_FILLER) |
7 | 426 |
427 #define K_SELECT TERMCAP2KEY(KS_SELECT, KE_FILLER) | |
428 #define K_TEAROFF TERMCAP2KEY(KS_TEAROFF, KE_FILLER) | |
429 | |
685 | 430 #define K_TABLINE TERMCAP2KEY(KS_TABLINE, KE_FILLER) |
687 | 431 #define K_TABMENU TERMCAP2KEY(KS_TABMENU, KE_FILLER) |
685 | 432 |
7 | 433 /* |
434 * Symbols for pseudo keys which are translated from the real key symbols | |
435 * above. | |
436 */ | |
437 #define K_LEFTMOUSE TERMCAP2KEY(KS_EXTRA, KE_LEFTMOUSE) | |
438 #define K_LEFTMOUSE_NM TERMCAP2KEY(KS_EXTRA, KE_LEFTMOUSE_NM) | |
439 #define K_LEFTDRAG TERMCAP2KEY(KS_EXTRA, KE_LEFTDRAG) | |
440 #define K_LEFTRELEASE TERMCAP2KEY(KS_EXTRA, KE_LEFTRELEASE) | |
441 #define K_LEFTRELEASE_NM TERMCAP2KEY(KS_EXTRA, KE_LEFTRELEASE_NM) | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
442 #define K_MOUSEMOVE TERMCAP2KEY(KS_EXTRA, KE_MOUSEMOVE) |
7 | 443 #define K_MIDDLEMOUSE TERMCAP2KEY(KS_EXTRA, KE_MIDDLEMOUSE) |
444 #define K_MIDDLEDRAG TERMCAP2KEY(KS_EXTRA, KE_MIDDLEDRAG) | |
445 #define K_MIDDLERELEASE TERMCAP2KEY(KS_EXTRA, KE_MIDDLERELEASE) | |
446 #define K_RIGHTMOUSE TERMCAP2KEY(KS_EXTRA, KE_RIGHTMOUSE) | |
447 #define K_RIGHTDRAG TERMCAP2KEY(KS_EXTRA, KE_RIGHTDRAG) | |
448 #define K_RIGHTRELEASE TERMCAP2KEY(KS_EXTRA, KE_RIGHTRELEASE) | |
449 #define K_X1MOUSE TERMCAP2KEY(KS_EXTRA, KE_X1MOUSE) | |
450 #define K_X1MOUSE TERMCAP2KEY(KS_EXTRA, KE_X1MOUSE) | |
451 #define K_X1DRAG TERMCAP2KEY(KS_EXTRA, KE_X1DRAG) | |
452 #define K_X1RELEASE TERMCAP2KEY(KS_EXTRA, KE_X1RELEASE) | |
453 #define K_X2MOUSE TERMCAP2KEY(KS_EXTRA, KE_X2MOUSE) | |
454 #define K_X2DRAG TERMCAP2KEY(KS_EXTRA, KE_X2DRAG) | |
455 #define K_X2RELEASE TERMCAP2KEY(KS_EXTRA, KE_X2RELEASE) | |
456 | |
457 #define K_IGNORE TERMCAP2KEY(KS_EXTRA, KE_IGNORE) | |
620 | 458 #define K_NOP TERMCAP2KEY(KS_EXTRA, KE_NOP) |
13829
044337cbf854
patch 8.0.1786: no test for 'termwinkey'
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
459 #define K_CANCEL TERMCAP2KEY(KS_EXTRA, KE_CANCEL) |
7 | 460 |
461 #define K_MOUSEDOWN TERMCAP2KEY(KS_EXTRA, KE_MOUSEDOWN) | |
462 #define K_MOUSEUP TERMCAP2KEY(KS_EXTRA, KE_MOUSEUP) | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
1380
diff
changeset
|
463 #define K_MOUSELEFT TERMCAP2KEY(KS_EXTRA, KE_MOUSELEFT) |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
1380
diff
changeset
|
464 #define K_MOUSERIGHT TERMCAP2KEY(KS_EXTRA, KE_MOUSERIGHT) |
7 | 465 |
466 #define K_CSI TERMCAP2KEY(KS_EXTRA, KE_CSI) | |
467 #define K_SNR TERMCAP2KEY(KS_EXTRA, KE_SNR) | |
468 #define K_PLUG TERMCAP2KEY(KS_EXTRA, KE_PLUG) | |
469 #define K_CMDWIN TERMCAP2KEY(KS_EXTRA, KE_CMDWIN) | |
470 | |
471 #define K_DROP TERMCAP2KEY(KS_EXTRA, KE_DROP) | |
1380 | 472 #define K_FOCUSGAINED TERMCAP2KEY(KS_EXTRA, KE_FOCUSGAINED) |
473 #define K_FOCUSLOST TERMCAP2KEY(KS_EXTRA, KE_FOCUSLOST) | |
7 | 474 |
203 | 475 #define K_CURSORHOLD TERMCAP2KEY(KS_EXTRA, KE_CURSORHOLD) |
476 | |
7 | 477 /* Bits for modifier mask */ |
478 /* 0x01 cannot be used, because the modifier must be 0x02 or higher */ | |
479 #define MOD_MASK_SHIFT 0x02 | |
480 #define MOD_MASK_CTRL 0x04 | |
481 #define MOD_MASK_ALT 0x08 /* aka META */ | |
179 | 482 #define MOD_MASK_META 0x10 /* META when it's different from ALT */ |
483 #define MOD_MASK_2CLICK 0x20 /* use MOD_MASK_MULTI_CLICK */ | |
484 #define MOD_MASK_3CLICK 0x40 /* use MOD_MASK_MULTI_CLICK */ | |
485 #define MOD_MASK_4CLICK 0x60 /* use MOD_MASK_MULTI_CLICK */ | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
11629
diff
changeset
|
486 #ifdef MACOS_X |
179 | 487 # define MOD_MASK_CMD 0x80 |
7 | 488 #endif |
489 | |
490 #define MOD_MASK_MULTI_CLICK (MOD_MASK_2CLICK|MOD_MASK_3CLICK|MOD_MASK_4CLICK) | |
491 | |
492 /* | |
493 * The length of the longest special key name, including modifiers. | |
10644
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
494 * Current longest is <M-C-S-T-D-A-4-ScrollWheelRight> (length includes '<' and |
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
495 * '>'). |
7 | 496 */ |
10644
2025bec9175f
patch 8.0.0212: buffer for key name may be too small
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
497 #define MAX_KEY_NAME_LEN 32 |
7 | 498 |
499 /* Maximum length of a special key event as tokens. This includes modifiers. | |
179 | 500 * The longest event is something like <M-C-S-T-4-LeftDrag> which would be the |
7 | 501 * following string of tokens: |
502 * | |
503 * <K_SPECIAL> <KS_MODIFIER> bitmask <K_SPECIAL> <KS_EXTRA> <KT_LEFTDRAG>. | |
504 * | |
505 * This is a total of 6 tokens, and is currently the longest one possible. | |
506 */ | |
507 #define MAX_KEY_CODE_LEN 6 |