1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-25 06:12:16 +03:00

remove now-unused function

This commit is contained in:
Wez Furlong 2019-02-23 13:08:47 -08:00
parent e986ec99f9
commit f5d688c941

View File

@ -26,10 +26,6 @@ pub fn modifiers_from_state(state: u16) -> KeyModifiers {
mods
}
pub fn modifiers(event: &KeyPressEvent) -> KeyModifiers {
modifiers_from_state(event.state())
}
/// Translates non-printable X11 keysym to termwiz::KeyCode
/// for missing keys, look into ```/usr/include/X11/keysymdef.h``` and/or define them in KeyCode.
/// If we can find a unicode representation of the input key then this function is skipped.