Dont turn on disambiguate keys when receiving th XTMODKEYS escape code

See #4075
This commit is contained in:
Kovid Goyal
2021-10-01 21:26:27 +05:30
parent cfeeec95fa
commit d6a43a7729
5 changed files with 10 additions and 19 deletions

View File

@@ -998,7 +998,11 @@ dispatch_csi(Screen *screen, PyObject DUMP_UNUSED *dump_callback) {
break;
case 'm':
if (start_modifier == '>' && !end_modifier) {
CALL_CSI_HANDLER2(screen_xtmodkeys, 0, 0);
REPORT_ERROR(
"The application is trying to use XTerm's modifyOtherKeys."
" This is superseded by the kitty keyboard protocol: https://sw.kovidgoyal.net/kitty/keyboard-protocol/"
" the application should be updated to use that"
);
break;
}
/* fallthrough */