Compare commits

...

1 Commits

Author SHA1 Message Date
Johannes Altmanninger
94c5a9d604 Don't emit OSC notifications
See #11442, #11427
2025-05-01 07:05:35 +02:00

View File

@@ -139,6 +139,16 @@ fn write_command(&mut self, cmd: TerminalCommand<'_>) -> bool
assert!(!matches!(cmd, CursorDown));
return false;
}
if matches!(
cmd,
Osc0WindowTitle(_)
| Osc133CommandStart(_)
| Osc133PromptStart
| Osc133CommandFinished(_)
| QueryKittyKeyboardProgressiveEnhancements
) {
return false;
}
let ti = maybe_terminfo;
fn write(out: &mut impl Output, sequence: &'static [u8]) -> bool {
out.write_bytes(sequence);