From 182f8948b81f9d506671fc925bebd0ed8abd6e13 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 13 Aug 2024 21:58:32 +0200 Subject: [PATCH] Remove unused function --- src/input_common.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/input_common.rs b/src/input_common.rs index a65267055..24f3170e4 100644 --- a/src/input_common.rs +++ b/src/input_common.rs @@ -258,14 +258,6 @@ impl CharEvent { }) } - pub fn from_char_seq(c: char, seq: WString) -> CharEvent { - CharEvent::Key(KeyEvent { - key: Key::from_raw(c), - input_style: CharInputStyle::Normal, - seq, - }) - } - pub fn from_readline(cmd: ReadlineCmd) -> CharEvent { Self::from_readline_seq(cmd, WString::new()) }