()
| 871 | } |
| 872 | |
| 873 | backspace(): Cursor { |
| 874 | if (this.isAtStart()) { |
| 875 | return this |
| 876 | } |
| 877 | return this.left().modifyText(this) |
| 878 | } |
| 879 | |
| 880 | deleteToLineStart(): { cursor: Cursor; killed: string } { |
| 881 | // If cursor is right after a newline (at start of line), delete just that |
no test coverage detected