diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-22 09:07:07 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-22 09:07:07 +0300 |
| commit | 02f5f1419c4cb5fccc47a0ce4dbf3957e73b0e79 (patch) | |
| tree | 5ad976209e913bfcf8a022ea1d4c0d3cb0d45c60 /internal/ui/taskdetail.go | |
| parent | e2795b421a92ec16a64b1780dd71cb1a68b92680 (diff) | |
Add Taskwarrior shell promptv0.18.0
Add an in-app Taskwarrior command prompt for normal and ultra modes, including selected-task prefill, async completions, captured output, and non-interactive recurrence handling. Also preserve recurring-task delete/undo support in the staged changes.
Diffstat (limited to 'internal/ui/taskdetail.go')
| -rw-r--r-- | internal/ui/taskdetail.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ui/taskdetail.go b/internal/ui/taskdetail.go index eaf0b45..f8417cf 100644 --- a/internal/ui/taskdetail.go +++ b/internal/ui/taskdetail.go @@ -297,7 +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")) + lines = append(lines, ist.Render("Press d to mark task done, D to delete, U to undo last done/delete")) if m.detailSearching { lines = append(lines, ist.Render("Type to search, Enter to confirm")) } else { |
