()
| 1579 | } |
| 1580 | |
| 1581 | private moveToLineEnd(): void { |
| 1582 | this.lastAction = null; |
| 1583 | const currentLine = this.state.lines[this.state.cursorLine] || ""; |
| 1584 | this.setCursorCol(currentLine.length); |
| 1585 | } |
| 1586 | |
| 1587 | private deleteToStartOfLine(): void { |
| 1588 | this.exitHistoryBrowsing(); |
no test coverage detected