From dbc9c19f8306aa095350abb2edef353c3c44d402 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 28 Mar 2026 11:20:47 +0200 Subject: Rename "Pro" column header to "Pri" for Priority in ask command output Co-Authored-By: Claude Sonnet 4.6 --- 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 734b4a5..d801f8a 100644 --- a/internal/askcli/formatter.go +++ b/internal/askcli/formatter.go @@ -39,7 +39,7 @@ type taskListWidths struct { func taskListWidthsFor(tasks []TaskExport, aliases map[string]string, terminalWidth int) taskListWidths { widths := taskListWidths{ Urgency: len("Urg"), - Priority: len("Pro"), + Priority: len("Pri"), ID: len("ID"), Status: len("Status"), Started: len("Started"), @@ -63,7 +63,7 @@ func taskListWidthsFor(tasks []TaskExport, aliases map[string]string, terminalWi func writeTaskListHeader(b *strings.Builder, widths taskListWidths) { fmt.Fprintf(b, "%-*s | %-*s | %-*s | %-*s | %-*s | %-*s | %-*s\n", widths.Urgency, "Urg", - widths.Priority, "Pro", + widths.Priority, "Pri", widths.ID, "ID", widths.Status, "Status", widths.Started, "Started", -- cgit v1.2.3