mirror of
https://github.com/wez/wezterm.git
synced 2024-12-28 07:55:03 +03:00
term: ignore ShiftIn/ShiftOut
rather than logging an error. closes: #509
This commit is contained in:
parent
48f5fccb86
commit
01f5df6729
@ -2990,6 +2990,10 @@ impl<'a> Performer<'a> {
|
||||
}
|
||||
}
|
||||
ControlCode::RI => self.c1_reverse_index(),
|
||||
ControlCode::ShiftIn | ControlCode::ShiftOut => {
|
||||
// These sequences are used to switch between character sets.
|
||||
// wezterm only supports UTF-8, so these do nothing.
|
||||
}
|
||||
_ => error!("unhandled ControlCode {:?}", control),
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user