aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2024-07-15 00:54:45 +0200
committerGitHub <noreply@github.com>2024-07-15 06:54:45 +0800
commit04c158fbec9aeeccd7bd1bb16fc8a688edadd353 (patch)
tree373aa0c994bb49fc796200aefc01eed2265f78c1 /src/nvim/getchar.c
parentda9e9387934554c069c763fb432aba1b83edb999 (diff)
downloadrneovim-04c158fbec9aeeccd7bd1bb16fc8a688edadd353.tar.gz
rneovim-04c158fbec9aeeccd7bd1bb16fc8a688edadd353.tar.bz2
rneovim-04c158fbec9aeeccd7bd1bb16fc8a688edadd353.zip
docs: misc (#29622)
Co-authored-by: Christian Clason <c.clason@uni-graz.at> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r--src/nvim/getchar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c
index 154a6a636a..a73824bdf5 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -1678,8 +1678,8 @@ int vgetc(void)
vgetc_char = c;
}
- // a keypad or special function key was not mapped, use it like
- // its ASCII equivalent
+ // A keypad or special function key was not mapped, use it like
+ // its ASCII equivalent.
switch (c) {
case K_KPLUS:
c = '+'; break;