aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/keymap.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-01-21 18:08:56 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-01-21 18:08:56 +0800
commit8300d337c89dc3ef943694bc1d44f32145a74f0d (patch)
tree50f7aa75fb1cff3d19c7e357371d4b91216e2d2d /src/nvim/keymap.c
parentff7c3d12750b1cd4baccea0baeafe7e5d5339e94 (diff)
downloadrneovim-8300d337c89dc3ef943694bc1d44f32145a74f0d.tar.gz
rneovim-8300d337c89dc3ef943694bc1d44f32145a74f0d.tar.bz2
rneovim-8300d337c89dc3ef943694bc1d44f32145a74f0d.zip
refactor: remove the <xCSI> key
CSI typed directly is now just <CSI>. The <xCSI> key is obsolete.
Diffstat (limited to 'src/nvim/keymap.c')
-rw-r--r--src/nvim/keymap.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c
index abf016b832..f8ccb79ade 100644
--- a/src/nvim/keymap.c
+++ b/src/nvim/keymap.c
@@ -158,7 +158,6 @@ static const struct key_name_entry {
{ ESC, "Esc" },
{ ESC, "Escape" }, // Alternative name
{ CSI, "CSI" },
- { K_CSI, "xCSI" },
{ '|', "Bar" },
{ '\\', "Bslash" },
{ K_DEL, "Del" },