diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-27 06:46:28 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-27 06:46:28 +0200 |
| commit | 426b836d03078a5e438319d0d2a90d9d2a93430b (patch) | |
| tree | 1d19144a3b035442de35ac1869476ab22129bf75 /internal/askcli/formatter.go | |
| parent | 21c1d5c9cc4974ba490b329acae735ff6bde9973 (diff) | |
fix askcli header width for 0685342b-606c-4c8f-aab5-cd363d926e77
Diffstat (limited to 'internal/askcli/formatter.go')
| -rw-r--r-- | internal/askcli/formatter.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/askcli/formatter.go b/internal/askcli/formatter.go index 7ca9225..9e3c245 100644 --- a/internal/askcli/formatter.go +++ b/internal/askcli/formatter.go @@ -31,7 +31,7 @@ type taskListWidths struct { func taskListWidthsFor(tasks []TaskExport, aliases map[string]string) taskListWidths { widths := taskListWidths{ Urgency: len("Urgency"), - Priority: len("Priority"), + Priority: len("Prio"), ID: len("ID"), Status: len("Status"), Started: len("Started"), @@ -53,7 +53,7 @@ func taskListWidthsFor(tasks []TaskExport, aliases map[string]string) taskListWi func writeTaskListHeader(b *strings.Builder, widths taskListWidths) { fmt.Fprintf(b, "%-*s | %-*s | %-*s | %-*s | %-*s | %-*s | %-*s\n", widths.Urgency, "Urgency", - widths.Priority, "Priority", + widths.Priority, "Prio", widths.ID, "ID", widths.Status, "Status", widths.Started, "Started", |
