From 426b836d03078a5e438319d0d2a90d9d2a93430b Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 27 Mar 2026 06:46:28 +0200 Subject: fix askcli header width for 0685342b-606c-4c8f-aab5-cd363d926e77 --- internal/askcli/formatter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/askcli/formatter.go') 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", -- cgit v1.2.3