diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-31 10:07:41 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-31 10:07:41 +0300 |
| commit | 0dfcb0f3fe6db144f02506df95e68707d9b5091c (patch) | |
| tree | ed6c0b976acca95b403a7939dd49c49de160003b /internal/askcli/dispatch.go | |
| parent | 168d3a1009066ba38a37fe8a2f8f40a649344eae (diff) | |
ask: add completed sub-command to list completed tasks
Diffstat (limited to 'internal/askcli/dispatch.go')
| -rw-r--r-- | internal/askcli/dispatch.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/askcli/dispatch.go b/internal/askcli/dispatch.go index f6c503b..81b8944 100644 --- a/internal/askcli/dispatch.go +++ b/internal/askcli/dispatch.go @@ -82,6 +82,7 @@ func (d *Dispatcher) help(w io.Writer) (int, error) { _, _ = io.WriteString(w, " ask add [mods...] [depends:<id|uuid>,...] <description...> Create a new task and print created task <id>\n") _, _ = io.WriteString(w, " ask list [filters] List active tasks (default)\n") _, _ = io.WriteString(w, " ask ready List READY tasks (not blocked)\n") + _, _ = io.WriteString(w, " ask completed List completed tasks\n") _, _ = io.WriteString(w, " ask all [filters] List all tasks including completed/deleted\n") _, _ = io.WriteString(w, " ask info [id|uuid] Show task details or current started task\n") _, _ = io.WriteString(w, " ask annotate <id|uuid> \"note\" Add annotation to task\n") |
