()
| 452 | } |
| 453 | |
| 454 | private isOnLastVisualLine(): boolean { |
| 455 | const visualLines = this.buildVisualLineMap(this.lastWidth); |
| 456 | const currentVisualLine = this.findCurrentVisualLine(visualLines); |
| 457 | return currentVisualLine === visualLines.length - 1; |
| 458 | } |
| 459 | |
| 460 | private navigateHistory(direction: 1 | -1): void { |
| 461 | this.lastAction = null; |
no test coverage detected