1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-24 13:52:55 +03:00

remote stray debug

This commit is contained in:
Wez Furlong 2022-06-18 17:56:26 -07:00
parent 5c172e4ed2
commit bf199caa3f

View File

@ -461,8 +461,7 @@ impl KeyCode {
) -> Result<String> {
match &modes.encoding {
KeyboardEncoding::Kitty(flags) if *flags != KittyKeyboardFlags::NONE => {
log::info!("{:?}", flags);
return dbg!(self.encode_kitty(mods, is_down, *flags));
return self.encode_kitty(mods, is_down, *flags);
}
_ => {}
}