From aaf33bb60938cbae12b6b2e381477ec01e89781d Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Wed, 27 Oct 2021 13:16:14 -0600 Subject: [PATCH] =?UTF-8?q?fix:=20Add=20missing=20task=5Fedit=20block=20?= =?UTF-8?q?=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app.rs b/src/app.rs index a5b40f9..1e4496e 100644 --- a/src/app.rs +++ b/src/app.rs @@ -2405,6 +2405,14 @@ impl TaskwarriorTui { 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 { match self.task_undo() { Ok(_) => self.update(true)?,