mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
Suppress logging about CSI 8 Y ; X t
neovim will try to force the window to resize after suspend/resume. No other terminal allows this today, so rather than log it as an unhandled event, explicitly ignore it.
This commit is contained in:
parent
a3921a73fa
commit
b00f383f2b
@ -1302,6 +1302,10 @@ impl TerminalState {
|
||||
);
|
||||
write!(host.writer(), "\x1bP{}!~{:04x}\x1b\\", request_id, checksum).ok();
|
||||
}
|
||||
Window::ResizeWindowCells { .. } => {
|
||||
// We don't allow the application to change the window size; that's
|
||||
// up to the user!
|
||||
}
|
||||
Window::Iconify | Window::DeIconify => {}
|
||||
Window::PopIconAndWindowTitle
|
||||
| Window::PopWindowTitle
|
||||
|
Loading…
Reference in New Issue
Block a user