Centralize shared command error extraction for async shell-outs #435
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#435
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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
cmd_error(...)style logic is currently duplicated across modules likeopsandreview. That makes error formatting drift easier and complicates follow-up work to preserve richer stderr/stdout details consistently.Proposed solution
Move shared command error extraction into one helper with a single contract for stderr/stdout/fallback handling, then update async callers to use it consistently.
Notes