mirror of
https://github.com/wez/wezterm.git
synced 2024-12-29 00:21:57 +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::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),
|
_ => error!("unhandled ControlCode {:?}", control),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user