mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-13 12:09: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;
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user