mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-23 00:38:10 +02:00
vim also produces CSI > 4;m ignore that as well
This commit is contained in:
@@ -784,7 +784,7 @@ dispatch_csi(Screen *screen, PyObject DUMP_UNUSED *dump_callback) {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'm':
|
case 'm':
|
||||||
if (start_modifier == '>' && !end_modifier) {
|
if (start_modifier == '>' && (!end_modifier || end_modifier == ';')) {
|
||||||
REPORT_ERROR("Ignoring xterm specific key modifier resource options (CSI > m)");
|
REPORT_ERROR("Ignoring xterm specific key modifier resource options (CSI > m)");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user