mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 04:41:14 -03:00
@@ -139,6 +139,16 @@ fn write_command(&mut self, cmd: TerminalCommand<'_>) -> bool
|
|||||||
assert!(!matches!(cmd, CursorDown));
|
assert!(!matches!(cmd, CursorDown));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if matches!(
|
||||||
|
cmd,
|
||||||
|
Osc0WindowTitle(_)
|
||||||
|
| Osc133CommandStart(_)
|
||||||
|
| Osc133PromptStart
|
||||||
|
| Osc133CommandFinished(_)
|
||||||
|
| QueryKittyKeyboardProgressiveEnhancements
|
||||||
|
) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
let ti = maybe_terminfo;
|
let ti = maybe_terminfo;
|
||||||
fn write(out: &mut impl Output, sequence: &'static [u8]) -> bool {
|
fn write(out: &mut impl Output, sequence: &'static [u8]) -> bool {
|
||||||
out.write_bytes(sequence);
|
out.write_bytes(sequence);
|
||||||
|
|||||||
Reference in New Issue
Block a user