summaryrefslogtreecommitdiff
path: root/internal/ui/taskdetail.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-26 19:06:12 +0300
committerPaul Buetow <paul@buetow.org>2026-04-26 19:06:12 +0300
commitca680540998776c2b42f6d1a827102b20139f8cf (patch)
tree3bad6a131d7bd1efb369fab821d46ef30299951a /internal/ui/taskdetail.go
parent1528fbd588262bcd39130ab0829219254ca371d9 (diff)
Release v0.16.0v0.16.0
Add d (mark done) and U (undo last done) hotkeys to the task detail view opened with Enter, mirroring the table-view behavior. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'internal/ui/taskdetail.go')
-rw-r--r--internal/ui/taskdetail.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/ui/taskdetail.go b/internal/ui/taskdetail.go
index 94e2ea9..eaf0b45 100644
--- a/internal/ui/taskdetail.go
+++ b/internal/ui/taskdetail.go
@@ -297,6 +297,7 @@ func (m *Model) renderDetailFooter(lines []string) []string {
lines = append(lines, ist.Render("Press ESC or q to return to table view"))
lines = append(lines, ist.Render("Use ↑/k and ↓/j to navigate fields"))
lines = append(lines, ist.Render("Press i or Enter to edit (Priority, Tags, Due, Recurrence, Description)"))
+ lines = append(lines, ist.Render("Press d to mark task done, U to undo last done"))
if m.detailSearching {
lines = append(lines, ist.Render("Type to search, Enter to confirm"))
} else {