mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-24 18:07:01 +00:00
vim also produces CSI > 4;m ignore that as well
This commit is contained in:
parent
1f33348cf6
commit
a083aa04b2
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue