1
1
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:
Wez Furlong 2018-01-31 10:15:39 -08:00
parent 45793bd594
commit 4dcab21a97

View File

@ -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} {}",