fix(editor): Cmd+X cuts current line and Cmd+A highlights every line on trailing newline (#1075)#1080
Merged
Conversation
…on trailing newline (#1075)
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
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
Two related editor fixes from issue #1075.
Cmd+X cuts the current line when no selection
Matches VS Code, Sublime, JetBrains, and Xcode source editor. New
LineCutCalculator(pure, testable) drives the decision inEditorEventRouter:NSString.lineRange(for:)(Apple's documented line-boundary API, handles LF / CR / CRLF correctly).Cmd+A highlights every line, not just the first, on trailing-newline buffers
In
TextSelectionManager+FillRects.swift, theelsebranch was wrongly entered for the LAST text line wheneverintersectionRange.max == lineStorage.length, andrectForOffset(lineStorage.length)resolved to the trailing-empty-line position at the leading edge — collapsing the highlight to width 0.Fix: detect when the line ends with a line-break character via
LineEnding(line:)and treat that case the same as a non-end-of-doc line — extend the highlight to the right edge.Reproduced in unit test before the fix:
Test plan
LineCutCalculatorTests(13 tests) all pass.SelectAllWithTrailingNewlineTests(13 tests) all pass.CmdShiftLeftAtEndOfDocumentTests(9 regression tests) all pass.\ncut, lines below shift up.\n(extra empty line at the bottom). Cmd+A → every line shows blue highlight, including the one before the trailing empty line.\n. Cmd+A → every line highlighted, last line's highlight stops at the text end (no extension to right edge).