mirror of
https://github.com/wez/wezterm.git
synced 2024-12-23 13:21:38 +03:00
handle tmux events DCS event
This commit is contained in:
parent
f36d4c6734
commit
a7b60c8d88
@ -653,14 +653,17 @@ impl wezterm_term::DeviceControlHandler for LocalPaneDCSHandler {
|
||||
}
|
||||
}
|
||||
DeviceControlMode::Data(c) => {
|
||||
log::warn!(
|
||||
"unhandled DeviceControlMode::Data {:x} {}",
|
||||
c,
|
||||
(c as char).escape_debug()
|
||||
);
|
||||
}
|
||||
DeviceControlMode::TmuxEvents(events) => {
|
||||
if let Some(tmux) = self.tmux_domain.as_ref() {
|
||||
tmux.advance(c);
|
||||
tmux.advance(events);
|
||||
} else {
|
||||
log::warn!(
|
||||
"unhandled DeviceControlMode::Data {:x} {}",
|
||||
c,
|
||||
(c as char).escape_debug()
|
||||
);
|
||||
log::warn!("unhandled DeviceControlMode::TmuxEvents {:?}", &events);
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
|
Loading…
Reference in New Issue
Block a user