fix: move text notes to comma key

This commit is contained in:
xeruf 2024-08-01 20:04:56 +03:00
parent a9509fd4f2
commit 256c86e06f
2 changed files with 2 additions and 2 deletions

View File

@ -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]` - Complete active task and move to parent, with optional state description
- `<[TEXT]` - Close 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` - 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) - `@` - undoes last action (moving in place or upwards or waiting a minute confirms pending actions)
Property Filters: Property Filters:

View File

@ -304,7 +304,7 @@ async fn main() {
} }
}, },
Some('-') => tasks.add_note(arg), Some(',') => tasks.add_note(arg),
Some('>') => { Some('>') => {
tasks.update_state(arg, State::Done); tasks.update_state(arg, State::Done);