diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-25 21:47:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-25 21:47:41 +0000 |
commit | c542aef58df8ea69708d29d6fcbfa44f5eb3481d (patch) | |
tree | 4a42501b41abbf15084a727e9c3e773bb791698a /src/keymap.h | |
parent | ba6c05240fc0333f3e2249ca8a6b7d51bdad2316 (diff) | |
download | vim-git-c542aef58df8ea69708d29d6fcbfa44f5eb3481d.tar.gz |
updated for version 7.0207
Diffstat (limited to 'src/keymap.h')
-rw-r--r-- | src/keymap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/keymap.h b/src/keymap.h index 3ffea9319..34521e403 100644 --- a/src/keymap.h +++ b/src/keymap.h @@ -104,6 +104,9 @@ /* Used for click in a tab pages label. */ #define KS_TABLINE 240 +/* Used for menu in a tab pages line. */ +#define KS_TABMENU 239 + /* * Filler used after KS_SPECIAL and others */ @@ -403,6 +406,7 @@ enum key_extra #define K_TEAROFF TERMCAP2KEY(KS_TEAROFF, KE_FILLER) #define K_TABLINE TERMCAP2KEY(KS_TABLINE, KE_FILLER) +#define K_TABMENU TERMCAP2KEY(KS_TABMENU, KE_FILLER) /* * Symbols for pseudo keys which are translated from the real key symbols |