vim also produces CSI > 4;m ignore that as well

This commit is contained in:
Kovid Goyal
2020-07-24 19:19:18 +05:30
parent 1f33348cf6
commit a083aa04b2

View File

@@ -784,7 +784,7 @@ dispatch_csi(Screen *screen, PyObject DUMP_UNUSED *dump_callback) {
}
break;
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)");
break;
}