fix(ci): use live picker widths for CI rows #206
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
fugitive
good first issue
help wanted
invalid
question
v0.1.0
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
barrettruth/forge.nvim!206
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/ci-run-display-title"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
CI and check picker rows were formatted from a guessed width before the live fzf window existed, so entries could still truncate even when the open picker had plenty of room. Check names also treated longer real job names like
Markdown Format Checkas outliers, which capped the name column too aggressively.Solution
Render Forge picker rows against the live fzf window width whenever a picker supports dynamic row rendering, while reusing the existing layout and formatter logic. For check rows, allow the name column to grow to the actual longest check name when space is available. This also updates GitHub CI run and summary titles to prefer
displayTitle, so repo-level CI rows and summaries stay informative.