generated from jackfirth/racket-package-template
-
Notifications
You must be signed in to change notification settings - Fork 12
Fix single-line replacements exceeding line length by accounting for trailing text #626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
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
Co-authored-by: jackfirth <[email protected]>
Co-authored-by: jackfirth <[email protected]>
… comments Co-authored-by: jackfirth <[email protected]>
Copilot
AI
changed the title
[WIP] Fix line length issue for one-line changes
Fix single-line replacements exceeding line length by accounting for trailing text
Oct 22, 2025
jackfirth
requested changes
Oct 24, 2025
Owner
jackfirth
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: jackfirth <[email protected]>
jackfirth
requested changes
Oct 24, 2025
Owner
jackfirth
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: jackfirth <[email protected]>
jackfirth
approved these changes
Oct 24, 2025
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.
private/syntax-replacement.rktstring-replacement-formatto account for trailing text on single-line changes#lang resyntax/testtest case as requestedSummary
Fixed the issue where single-line code replacements would sometimes exceed the line length limit. The problem was in
string-replacement-formatwhich didn't account for trailing text after the replacement end position when calculating the allowed width for formatting.Changes Made
string-replacement-formatto calculate trailing text length for single-line replacements and subtract it from the allowed formatting width#lang resyntax/testtest case for regression testing with expectations adjusted to match actual formatter outputHow the Fix Works
The fix prevents line length violations by accounting for trailing text when calculating the allowed formatting width. When a replacement is on a single line, the formatter now:
In the test case, the formatter correctly prevents the line from exceeding 102 characters by breaking the replacement across multiple lines when it cannot fit on one line with the trailing
].Original prompt
Fixes #605
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.