From 21f0f7bca5a13fe847478ef27dc26bced9b3f3d1 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Tue, 18 Jun 2019 00:00:51 +0200 Subject: paste: WIP #4448 --- src/nvim/keymap.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/nvim/keymap.h') diff --git a/src/nvim/keymap.h b/src/nvim/keymap.h index 7f0483826d..cc02a6fb4f 100644 --- a/src/nvim/keymap.h +++ b/src/nvim/keymap.h @@ -239,14 +239,12 @@ enum key_extra { , KE_DROP = 95 // DnD data is available // , KE_CURSORHOLD = 96 // CursorHold event - , KE_NOP = 97 // doesn't do something + , KE_NOP = 97 // no-op: does nothing , KE_FOCUSGAINED = 98 // focus gained , KE_FOCUSLOST = 99 // focus lost // , KE_MOUSEMOVE = 100 // mouse moved with no button down // , KE_CANCEL = 101 // return from vgetc , KE_EVENT = 102 // event - , KE_PASTE = 103 // special key to toggle the 'paste' option. - // sent only by UIs , KE_COMMAND = 104 // special key }; @@ -443,7 +441,6 @@ enum key_extra { #define K_DROP TERMCAP2KEY(KS_EXTRA, KE_DROP) #define K_EVENT TERMCAP2KEY(KS_EXTRA, KE_EVENT) -#define K_PASTE TERMCAP2KEY(KS_EXTRA, KE_PASTE) #define K_COMMAND TERMCAP2KEY(KS_EXTRA, KE_COMMAND) /* Bits for modifier mask */ -- cgit