You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: truncate feed pane lines to prevent terminal wrapping
Three changes to stop the right pane from pushing the header off-screen:
1. joinPanesHorizontally: clamp maxLines to left-pane count so the
feed can never make the output taller than the left pane, and
truncate right-pane lines to rightW via ansiTruncate.
2. padAndJoinLines: truncate any line wider than width before padding,
preventing over-wide styled content from wrapping.
3. renderFeed: use lipgloss.Width + ansiTruncate for task and result
line truncation instead of byte-length len(), which mis-measures
strings containing multi-byte characters or ANSI codes.
0 commit comments