LibVT: Implement ST (ESC \) escape sequence

Closes #7175
This commit is contained in:
Daniel Bertalan 2021-05-16 13:14:37 +00:00 committed by Andreas Kling
commit 26953c2be1
Notes: sideshowbarker 2024-07-18 18:03:01 +09:00

View file

@ -704,6 +704,9 @@ void Terminal::execute_escape_sequence(Intermediates intermediates, bool ignore,
case 'M':
RI();
return;
case '\\':
// ST (string terminator) -- do nothing
return;
}
} else if (intermediates[0] == '#') {
switch (last_byte) {