()
| 472 | |
| 473 | // Helper to get logical line bounds for current position |
| 474 | private getLogicalLineBounds(): { start: number; end: number } { |
| 475 | return { |
| 476 | start: this.findLogicalLineStart(), |
| 477 | end: this.findLogicalLineEnd(), |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | // Helper to create cursor with preserved column, clamped to line length |
| 482 | // Snaps to grapheme boundary to avoid landing mid-grapheme |
no test coverage detected