()
| 846 | } |
| 847 | |
| 848 | backspace(): Cursor { |
| 849 | if (this.isAtStart()) { |
| 850 | return this |
| 851 | } |
| 852 | return this.left().modifyText(this) |
| 853 | } |
| 854 | |
| 855 | deleteToLineStart(): { cursor: Cursor; killed: string } { |
| 856 | // If cursor is right after a newline (at start of line), delete just that |
no test coverage detected