mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-26 03:07:18 +02:00
Merge branch 'kdheepak:main' into master
This commit is contained in:
commit
cdff8e3a22
1 changed files with 8 additions and 0 deletions
|
@ -2405,6 +2405,14 @@ impl TaskwarriorTui {
|
||||||
self.error = e;
|
self.error = e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if input == self.keyconfig.edit {
|
||||||
|
match self.task_edit() {
|
||||||
|
Ok(_) => self.update(true)?,
|
||||||
|
Err(e) => {
|
||||||
|
self.mode = Mode::Tasks(Action::Error);
|
||||||
|
self.error = e;
|
||||||
|
}
|
||||||
|
}
|
||||||
} else if input == self.keyconfig.undo {
|
} else if input == self.keyconfig.undo {
|
||||||
match self.task_undo() {
|
match self.task_undo() {
|
||||||
Ok(_) => self.update(true)?,
|
Ok(_) => self.update(true)?,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue