summaryrefslogtreecommitdiff
path: root/internal/askcli/formatter.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-28 11:20:47 +0200
committerPaul Buetow <paul@buetow.org>2026-03-28 11:20:47 +0200
commitdbc9c19f8306aa095350abb2edef353c3c44d402 (patch)
tree2ed8424c56b854cef02029dc70c62d6e7ba132a3 /internal/askcli/formatter.go
parent1575c64b7d40f4a7b462609242bd72885157a383 (diff)
Rename "Pro" column header to "Pri" for Priority in ask command output
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/askcli/formatter.go')
-rw-r--r--internal/askcli/formatter.go4
1 files changed, 2 insertions, 2 deletions
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",