diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-01-21 18:08:56 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-01-21 18:08:56 +0800 |
commit | 6e69a3c3e79fd78b31753343213e68e73b0048c4 (patch) | |
tree | fde79b4be29f81880d5337ff5eb75864836c82da /src/nvim/input.c | |
parent | 8300d337c89dc3ef943694bc1d44f32145a74f0d (diff) | |
download | rneovim-6e69a3c3e79fd78b31753343213e68e73b0048c4.tar.gz rneovim-6e69a3c3e79fd78b31753343213e68e73b0048c4.tar.bz2 rneovim-6e69a3c3e79fd78b31753343213e68e73b0048c4.zip |
refactor: remove CSI unescaping and clean up related names and comments
Diffstat (limited to 'src/nvim/input.c')
-rw-r--r-- | src/nvim/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/input.c b/src/nvim/input.c index 2f7c5c2c16..5fa9b8b343 100644 --- a/src/nvim/input.c +++ b/src/nvim/input.c @@ -105,7 +105,7 @@ int get_keystroke(MultiQueue *events) // terminal code to complete. n = os_inchar(buf + len, maxlen, len == 0 ? -1L : 100L, 0, events); if (n > 0) { - // Replace zero and CSI by a special key code. + // Replace zero and K_SPECIAL by a special key code. n = fix_input_buffer(buf + len, n); len += n; waited = 0; |