need const trie :(
Some checks are pending
/ build (push) Waiting to run

This commit is contained in:
🪞👃🪞 2025-08-10 17:00:58 +03:00
parent e839096cf3
commit 7fd6c91643

View file

@ -27,7 +27,6 @@ impl TuiKey {
let mut modifiers = KeyModifiers::NONE;
let mut tokens = symbol[1..].split(Self::SPLIT).peekable();
while let Some(token) = tokens.next() {
println!("{token}");
if tokens.peek().is_some() {
match token {
"ctrl" | "Ctrl" | "c" | "C" => modifiers |= KeyModifiers::CONTROL,