fix: move text notes to comma key
This commit is contained in:
parent
a9509fd4f2
commit
256c86e06f
|
@ -102,7 +102,7 @@ Dots can be repeated to move to parent tasks.
|
|||
- `>[TEXT]` - Complete active task and move to parent, with optional state description
|
||||
- `<[TEXT]` - Close active task and move to parent, with optional state description
|
||||
- `!TEXT` - Set state for current task from text
|
||||
- `-TEXT` - add text note (comment / description)
|
||||
- `,TEXT` - add text note (comment / description)
|
||||
- `@` - undoes last action (moving in place or upwards or waiting a minute confirms pending actions)
|
||||
|
||||
Property Filters:
|
||||
|
|
|
@ -304,7 +304,7 @@ async fn main() {
|
|||
}
|
||||
},
|
||||
|
||||
Some('-') => tasks.add_note(arg),
|
||||
Some(',') => tasks.add_note(arg),
|
||||
|
||||
Some('>') => {
|
||||
tasks.update_state(arg, State::Done);
|
||||
|
|
Loading…
Reference in New Issue