mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 15:21:47 +00:00
refactor: fix clang-tidy bugprone-signed-char-misuse warnings
Prefer to declare variables with correct type instead of explicit casts wherever possible.
This commit is contained in:
@@ -7776,7 +7776,7 @@ int hkmap(int c)
|
||||
case ';':
|
||||
c = 't'; break;
|
||||
default: {
|
||||
static char str[] = "zqbcxlsjphmkwonu ydafe rig";
|
||||
static char_u str[] = "zqbcxlsjphmkwonu ydafe rig";
|
||||
|
||||
if (c < 'a' || c > 'z') {
|
||||
return c;
|
||||
|
Reference in New Issue
Block a user