summaryrefslogtreecommitdiffstats
path: root/src/map.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-12-16 18:33:20 +0000
committerBram Moolenaar <Bram@vim.org>2022-12-16 18:33:20 +0000
commit9d1184cd1d4ebbfb13859adffec09077a84fd2b2 (patch)
tree63c05b85a2a65b1ceca9f1f66127c28b239d4bb5 /src/map.c
parent9aee8ec400fe617f6d82441c46a22d0cef6fa3e6 (diff)
patch 9.0.1065: a shell command switching screens may still have a problemv9.0.1065
Problem: A shell command switching screens may still have a problem with the kitty keyboard protocol. Solution: Disable the kitty keyboard protocol both in the current and the alternate screen, if there are indications it might be needed. (issue #11705) Also fix naming.
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map.c b/src/map.c
index 505994a852..a856b88e7c 100644
--- a/src/map.c
+++ b/src/map.c
@@ -326,7 +326,7 @@ list_mappings(
case MOKS_OFF: name = _("Off"); break;
case MOKS_ENABLED: name = _("On"); break;
case MOKS_DISABLED: name = _("Disabled"); break;
- case MOKS_AFTER_T_KE: name = _("Cleared"); break;
+ case MOKS_AFTER_T_TE: name = _("Cleared"); break;
}
char buf[200];
@@ -344,7 +344,7 @@ list_mappings(
case KKPS_OFF: name = _("Off"); break;
case KKPS_ENABLED: name = _("On"); break;
case KKPS_DISABLED: name = _("Disabled"); break;
- case KKPS_AFTER_T_KE: name = _("Cleared"); break;
+ case KKPS_AFTER_T_TE: name = _("Cleared"); break;
}
char buf[200];