diff options
| author | Michael Reed <m.reed@mykolab.com> | 2015-05-18 11:07:24 -0400 |
|---|---|---|
| committer | Michael Reed <m.reed@mykolab.com> | 2015-05-18 11:07:24 -0400 |
| commit | 182b550ef2ba2b954e1f034ca04407f2e0c1c5f6 (patch) | |
| tree | 5fabe22f8185b16c00285827fb57eb1dbec6c566 /src/nvim/keymap.h | |
| parent | f415932b2da69261631044d6f910a14e24175b6c (diff) | |
| parent | a16eab9e57368188c834634cd824ce1ac5613db1 (diff) | |
| download | rneovim-182b550ef2ba2b954e1f034ca04407f2e0c1c5f6.tar.gz rneovim-182b550ef2ba2b954e1f034ca04407f2e0c1c5f6.tar.bz2 rneovim-182b550ef2ba2b954e1f034ca04407f2e0c1c5f6.zip | |
Merge pull request #2532 from Pyrohh/doc-cleanup-3
[RDY] Doc cleanup (3) + terminal remnants
Reviewed-by: Justin M. Keyes <justinkz@gmail.com>
Diffstat (limited to 'src/nvim/keymap.h')
| -rw-r--r-- | src/nvim/keymap.h | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/src/nvim/keymap.h b/src/nvim/keymap.h index c82a95c00c..022d27fda1 100644 --- a/src/nvim/keymap.h +++ b/src/nvim/keymap.h @@ -16,7 +16,7 @@ /* * For MSDOS some keys produce codes larger than 0xff. They are split into two - * chars, the first one is K_NUL (same value used in term_defs.h). + * chars, the first one is K_NUL. */ #define K_NUL (0xce) /* for MSDOS: special key follows */ @@ -78,12 +78,6 @@ #define KS_HOR_SCROLLBAR 248 /* - * These are used for DEC mouse - */ -#define KS_NETTERM_MOUSE 247 -#define KS_DEC_MOUSE 246 - -/* * Used for switching Select mode back on after a mapping or menu. */ #define KS_SELECT 245 @@ -103,12 +97,6 @@ /* Used for menu in a tab pages line. */ #define KS_TABMENU 239 -/* Used for the urxvt mouse. */ -#define KS_URXVT_MOUSE 238 - -/* Used for the sgr mouse. */ -#define KS_SGR_MOUSE 237 - /* * Filler used after KS_SPECIAL and others */ @@ -407,11 +395,6 @@ enum key_extra { #define K_VER_SCROLLBAR TERMCAP2KEY(KS_VER_SCROLLBAR, KE_FILLER) #define K_HOR_SCROLLBAR TERMCAP2KEY(KS_HOR_SCROLLBAR, KE_FILLER) -#define K_NETTERM_MOUSE TERMCAP2KEY(KS_NETTERM_MOUSE, KE_FILLER) -#define K_DEC_MOUSE TERMCAP2KEY(KS_DEC_MOUSE, KE_FILLER) -#define K_URXVT_MOUSE TERMCAP2KEY(KS_URXVT_MOUSE, KE_FILLER) -#define K_SGR_MOUSE TERMCAP2KEY(KS_SGR_MOUSE, KE_FILLER) - #define K_SELECT TERMCAP2KEY(KS_SELECT, KE_FILLER) #define K_TEAROFF TERMCAP2KEY(KS_TEAROFF, KE_FILLER) |