diff options
author | ZyX <kp-pav@yandex.ru> | 2017-10-16 00:41:41 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-10-16 00:41:41 +0300 |
commit | 15043e93b681ffdf1142d24aa918997e2e63a4b1 (patch) | |
tree | dad4206b42e64e8a6a68b81026a4c4028d743b05 /src/nvim/keymap.c | |
parent | ed253b5fe6515840fe6dd9df83855a0316de8bad (diff) | |
download | rneovim-15043e93b681ffdf1142d24aa918997e2e63a4b1.tar.gz rneovim-15043e93b681ffdf1142d24aa918997e2e63a4b1.tar.bz2 rneovim-15043e93b681ffdf1142d24aa918997e2e63a4b1.zip |
klee: Update key_name_entry table
Diffstat (limited to 'src/nvim/keymap.c')
-rw-r--r-- | src/nvim/keymap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c index 55ac835663..4f120e66f7 100644 --- a/src/nvim/keymap.c +++ b/src/nvim/keymap.c @@ -141,8 +141,7 @@ static char_u modifier_keys_table[] = static const struct key_name_entry { int key; // Special key code or ascii value const char *name; // Name of key -} key_names_table[] = -{ +} key_names_table[] = { { ' ', "Space" }, { TAB, "Tab" }, { K_TAB, "Tab" }, |