()
| 447 | |
| 448 | // Helper to get logical line bounds for current position |
| 449 | private getLogicalLineBounds(): { start: number; end: number } { |
| 450 | return { |
| 451 | start: this.findLogicalLineStart(), |
| 452 | end: this.findLogicalLineEnd(), |
| 453 | } |
| 454 | } |
| 455 | |
| 456 | // Helper to create cursor with preserved column, clamped to line length |
| 457 | // Snaps to grapheme boundary to avoid landing mid-grapheme |
no test coverage detected