diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-01-31 21:01:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 21:01:04 +0800 |
commit | 2a58e62145d64245e23825ca717aecf8eaaaddad (patch) | |
tree | 2cec6a10270b75a3cc54f93140f6c9d41505ea72 | |
parent | 2870311a37314135b73e0ee54b41da86c9540a39 (diff) | |
download | rneovim-2a58e62145d64245e23825ca717aecf8eaaaddad.tar.gz rneovim-2a58e62145d64245e23825ca717aecf8eaaaddad.tar.bz2 rneovim-2a58e62145d64245e23825ca717aecf8eaaaddad.zip |
vim-patch:8.2.4267: unused entry in keymap enum (#17255)
Problem: Unused entry in keymap enum.
Solution: Remove the entry.
https://github.com/vim/vim/commit/4c93aff20f228d0dfca11f4793eb2c8895d4984c
-rw-r--r-- | src/nvim/keymap.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/keymap.h b/src/nvim/keymap.h index 42cae0c35e..ae2ec7835e 100644 --- a/src/nvim/keymap.h +++ b/src/nvim/keymap.h @@ -122,8 +122,6 @@ // // Entries must be in the range 0x02-0x7f (see comment at K_SPECIAL). enum key_extra { - KE_NAME = 3, // name of this terminal entry - KE_S_UP = 4, // shift-up KE_S_DOWN = 5, // shift-down |