diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-02-01 18:53:01 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-02-01 22:15:21 -0500 |
commit | d6625349f50bb7326a39728d182d58808a6f0f29 (patch) | |
tree | 01cd39dad3d4e24cdfb2324d0a28fca024da36b3 /src/nvim/keymap.h | |
parent | 9c1a31927d946e6e3d25cb31cbf62e2ba1c0e8f2 (diff) | |
download | rneovim-d6625349f50bb7326a39728d182d58808a6f0f29.tar.gz rneovim-d6625349f50bb7326a39728d182d58808a6f0f29.tar.bz2 rneovim-d6625349f50bb7326a39728d182d58808a6f0f29.zip |
vim-patch:8.1.0140: recording into a register has focus events
Problem: Recording into a register has focus events. (Michael Naumann)
Solution: Don't record K_FOCUSGAINED and K_FOCUSLOST. (closes vim/vim#3143)
https://github.com/vim/vim/commit/972bfddc6b3f52ae0865ad8c0bf6089bc8a9883a
Diffstat (limited to 'src/nvim/keymap.h')
-rw-r--r-- | src/nvim/keymap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/keymap.h b/src/nvim/keymap.h index cc02a6fb4f..d3e887badc 100644 --- a/src/nvim/keymap.h +++ b/src/nvim/keymap.h @@ -240,8 +240,8 @@ enum key_extra { , KE_DROP = 95 // DnD data is available // , KE_CURSORHOLD = 96 // CursorHold event , KE_NOP = 97 // no-op: does nothing - , KE_FOCUSGAINED = 98 // focus gained - , KE_FOCUSLOST = 99 // focus lost + // , 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 |