comparison src/keymap.h @ 595:fea48f63efc8

updated for version 7.0169
author vimboss
date Tue, 13 Dec 2005 20:02:15 +0000
parents 0fd7ac767ecd
children 9e359e5759f6
comparison
equal deleted inserted replaced
594:35cef95a6b76 595:fea48f63efc8
5 * Do ":help uganda" in Vim to read copying and usage conditions. 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. 6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */ 7 */
8 8
9 /* 9 /*
10 * Keycode definitions for special keys.
11 *
12 * Any special key code sequences are replaced by these codes.
13 */
14
15 /*
10 * For MSDOS some keys produce codes larger than 0xff. They are split into two 16 * For MSDOS some keys produce codes larger than 0xff. They are split into two
11 * chars, the first one is K_NUL (same value used in term.h). 17 * chars, the first one is K_NUL (same value used in term.h).
12 */ 18 */
13 #define K_NUL (0xce) /* for MSDOS: special key follows */ 19 #define K_NUL (0xce) /* for MSDOS: special key follows */
14
15 /*
16 * Keycode definitions for special keys.
17 *
18 * Any special key code sequences are replaced by these codes.
19 */
20 20
21 /* 21 /*
22 * K_SPECIAL is the first byte of a special key code and is always followed by 22 * K_SPECIAL is the first byte of a special key code and is always followed by
23 * two bytes. 23 * two bytes.
24 * The second byte can have any value. ASCII is used for normal termcap 24 * The second byte can have any value. ASCII is used for normal termcap