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/keymap.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/keymap.c')
-rw-r--r-- | src/nvim/keymap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c index f8ccb79ade..32f2158d7b 100644 --- a/src/nvim/keymap.c +++ b/src/nvim/keymap.c @@ -963,7 +963,6 @@ char_u *replace_termcodes(const char_u *from, const size_t from_len, char_u **bu for (i = utfc_ptr2len_len(src, (int)(end - src) + 1); i > 0; i--) { // If the character is K_SPECIAL, replace it with K_SPECIAL // KS_SPECIAL KE_FILLER. - // If compiled with the GUI replace CSI with K_CSI. if (*src == K_SPECIAL) { result[dlen++] = K_SPECIAL; result[dlen++] = KS_SPECIAL; |