mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-25 06:41:15 -03:00
Compare commits
1 Commits
update-def
...
suppress-o
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
94c5a9d604 |
@@ -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