diff options
author | dundargoc <gocdundar@gmail.com> | 2022-11-26 18:57:46 +0100 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-01-09 17:03:40 +0800 |
commit | 08c2c7480619ccdf0c92fe6ce76da5b73b0e395b (patch) | |
tree | 2759bc2cb18bd7edc20fd17e7e0aeb8631bd957c /src/nvim/keycodes.c | |
parent | 53adccb6e0292f7ba5524121c0200a73aec977a6 (diff) | |
download | rneovim-08c2c7480619ccdf0c92fe6ce76da5b73b0e395b.tar.gz rneovim-08c2c7480619ccdf0c92fe6ce76da5b73b0e395b.tar.bz2 rneovim-08c2c7480619ccdf0c92fe6ce76da5b73b0e395b.zip |
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
Diffstat (limited to 'src/nvim/keycodes.c')
-rw-r--r-- | src/nvim/keycodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/keycodes.c b/src/nvim/keycodes.c index f3795ab276..71086a76e5 100644 --- a/src/nvim/keycodes.c +++ b/src/nvim/keycodes.c @@ -55,7 +55,7 @@ static const struct modmasktable { #define MOD_KEYS_ENTRY_SIZE 5 -static char_u modifier_keys_table[] = { +static uint8_t modifier_keys_table[] = { // mod mask with modifier without modifier MOD_MASK_SHIFT, '&', '9', '@', '1', // begin MOD_MASK_SHIFT, '&', '0', '@', '2', // cancel |