mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-07 20:26:44 +01:00
Compare commits
No commits in common. "7fd6c91643cbcfece56ebc14500c6a1ab775fc9e" and "24ac52d8079140b2b9f363d1568597bb5600a166" have entirely different histories.
7fd6c91643
...
24ac52d807
2 changed files with 1 additions and 10 deletions
|
|
@ -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)`
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue