mirror of
https://github.com/wez/wezterm.git
synced 2024-12-23 13:21:38 +03:00
placeholder for alt graphics mode
These are emitted by `top`
This commit is contained in:
parent
45793bd594
commit
4dcab21a97
@ -954,6 +954,11 @@ impl vte::Perform for TerminalState {
|
||||
// Reverse Index (RI)
|
||||
(b'M', &[], &[]) => self.reverse_index(),
|
||||
|
||||
// Enable alternate character set mode (smacs)
|
||||
(b'0', &[b'('], &[]) => {},
|
||||
// Exit alternate character set mode (rmacs)
|
||||
(b'B', &[b'('], &[]) => {},
|
||||
|
||||
(..) => {
|
||||
println!(
|
||||
"ESC unhandled params={:?}, intermediates={:?} b={:02x} {}",
|
||||
|
Loading…
Reference in New Issue
Block a user