Home
last modified time | relevance | path

Searched refs:SpecialKeycode (Results 1 – 2 of 2) sorted by relevance

/NovaShell/src/shell/
H A Dmod.rs13 keycode::{FunctionKeySuffix, SpecialKeycode},
174 file.write_all(&[SpecialKeycode::LF.into()]).unwrap(); in write_commands()
245 if let Ok(special_key) = SpecialKeycode::try_from(key) { in readline()
247 SpecialKeycode::ESC => { in readline()
251 SpecialKeycode::LF | SpecialKeycode::CR => { in readline()
257 SpecialKeycode::BackSpace => { in readline()
261 SpecialKeycode::Tab => { in readline()
/NovaShell/src/
H A Dkeycode.rs6 pub enum SpecialKeycode { enum
16 impl Into<u8> for SpecialKeycode { implementation