mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
Fix missing esc_dispatch
log
This was previously logging as an unhandled `execute`.
This commit is contained in:
parent
ff1ceb523d
commit
09b1843815
1 changed files with 2 additions and 1 deletions
|
@ -662,7 +662,8 @@ impl<'a, H: Handler + TermInfo + 'a> vte::Perform for Performer<'a, H> {
|
||||||
b'8' => self.handler.restore_cursor_position(),
|
b'8' => self.handler.restore_cursor_position(),
|
||||||
b'=' => self.handler.set_keypad_application_mode(),
|
b'=' => self.handler.set_keypad_application_mode(),
|
||||||
b'>' => self.handler.unset_keypad_application_mode(),
|
b'>' => self.handler.unset_keypad_application_mode(),
|
||||||
_ => err_println!("[unhandled] execute {:?}", byte as char),
|
_ => err_println!("[unhandled] esc_dispatch params={:?}, ints={:?}, byte={:?} ({:02x})",
|
||||||
|
params, intermediates, byte as char, byte),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue