Compare commits

..

No commits in common. "7fd6c91643cbcfece56ebc14500c6a1ab775fc9e" and "24ac52d8079140b2b9f363d1568597bb5600a166" have entirely different histories.

2 changed files with 1 additions and 10 deletions

View file

@ -113,13 +113,3 @@ this is the trait which differentiates "a thing" from
* e1: Unexpected '('
* e2: Unexpected 'b'
* e3: Unexpected 'd'
## todo
### operators
* replace: `(:= :name :value1 :valueN)`
* append: `(:+ :name :value2 :valueN)`
* filter: `(:- :name :value2 :valueN)`
* map: `(:* :name op)`
* reduce: `(:/ :name op)`

View file

@ -27,6 +27,7 @@ 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,