diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-24 23:53:04 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-24 23:53:04 +0000 |
commit | 32466aa2e9c45ab355dbaf99a9eedf334bc2e29f (patch) | |
tree | 1644d959a04f9f8c6ea5a8fe3c79f037c6915559 /src/keymap.h | |
parent | 2a3f7eeebfa05a33cc1d8fbba66a3dff976e8dd7 (diff) | |
download | vim-git-32466aa2e9c45ab355dbaf99a9eedf334bc2e29f.tar.gz |
updated for version 7.0206v7.0206
Diffstat (limited to 'src/keymap.h')
-rw-r--r-- | src/keymap.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/keymap.h b/src/keymap.h index 0aa447498..3ffea9319 100644 --- a/src/keymap.h +++ b/src/keymap.h @@ -101,6 +101,9 @@ /* Used for the qnx pterm mouse */ #define KS_PTERM_MOUSE 241 +/* Used for click in a tab pages label. */ +#define KS_TABLINE 240 + /* * Filler used after KS_SPECIAL and others */ @@ -399,6 +402,8 @@ enum key_extra #define K_SELECT TERMCAP2KEY(KS_SELECT, KE_FILLER) #define K_TEAROFF TERMCAP2KEY(KS_TEAROFF, KE_FILLER) +#define K_TABLINE TERMCAP2KEY(KS_TABLINE, KE_FILLER) + /* * Symbols for pseudo keys which are translated from the real key symbols * above. |