aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-04-04 04:36:13 +0200
committerGitHub <noreply@github.com>2018-04-04 04:36:13 +0200
commite8c39f72fdf19486ef6f3ab276d6d128ee446dc1 (patch)
tree7346b332e92d8e4db6593596feafa8f28aba2298 /src/nvim/getchar.c
parent8b8a75b2cf12c6c229ccdd583420b9815ba8d19a (diff)
parent224ebc0078f29ac3189d7fbd9a59b386ae2ee303 (diff)
downloadrneovim-e8c39f72fdf19486ef6f3ab276d6d128ee446dc1.tar.gz
rneovim-e8c39f72fdf19486ef6f3ab276d6d128ee446dc1.tar.bz2
rneovim-e8c39f72fdf19486ef6f3ab276d6d128ee446dc1.zip
Merge #8226 from justinmk/insert-mode-meta
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 5d4e61d56a..03929a58b6 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -1577,7 +1577,7 @@ vungetc ( /* unget one character (can only be done once!) */
old_mouse_col = mouse_col;
}
-/// get a character:
+/// Gets a character:
/// 1. from the stuffbuffer
/// This is used for abbreviated commands like "D" -> "d$".
/// Also used to redo a command for ".".
@@ -1595,7 +1595,7 @@ vungetc ( /* unget one character (can only be done once!) */
/// if "advance" is FALSE (vpeekc()):
/// just look whether there is a character available.
///
-/// When "no_mapping" is zero, checks for mappings in the current mode.
+/// When `no_mapping` (global) is zero, checks for mappings in the current mode.
/// Only returns one byte (of a multi-byte character).
/// K_SPECIAL and CSI may be escaped, need to get two more bytes then.
static int vgetorpeek(int advance)