()
| 2604 | this.scrollLines(-this._bufferService.buffer.ydisp); |
| 2605 | } |
| 2606 | scrollToBottom() { |
| 2607 | this.scrollLines(this._bufferService.buffer.ybase - this._bufferService.buffer.ydisp); |
| 2608 | } |
| 2609 | scrollToLine(e3) { |
| 2610 | const t3 = e3 - this._bufferService.buffer.ydisp; |
| 2611 | 0 !== t3 && this.scrollLines(t3); |
no test coverage detected