Fix task input cursor escaping into the Activity panel on overflow - #2
Open
rohittcodes wants to merge 1 commit into
Open
Fix task input cursor escaping into the Activity panel on overflow#2rohittcodes wants to merge 1 commit into
rohittcodes wants to merge 1 commit into
Conversation
The input box is a fixed-height widget, but the terminal cursor position wasn't clamped to it. Once typed content (via Shift+Enter newlines or a long wrapped line) exceeded the box's visible rows, the cursor row kept incrementing past the box's bottom border. Ratatui clips rendered widget content to its own Rect, but the terminal cursor is a separate global position it does not clip - so the cursor visually landed inside the Activity panel below instead of staying inside the input box. Add auto-scroll (Paragraph::scroll) so the cursor's line always stays within the box's visible rows, and clamp the cursor's column defensively for the edge case of one long unbroken word that word-wrap can't break. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Paragraph::scroll) so the cursor's line always stays within the box's visible rows, and a defensive column clamp for one long unbroken word that word-wrap can't breakTest plan
cargo check/cargo buildcleancargo run, pressi, type/Shift+Enter past 4 lines, confirm the cursor stays inside the input box instead of drifting into Activity🤖 Generated with Claude Code