(e3)
| 3020 | return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop, this._activeBuffer.scrollBottom), true; |
| 3021 | } |
| 3022 | scrollRight(e3) { |
| 3023 | if (this._activeBuffer.y > this._activeBuffer.scrollBottom || this._activeBuffer.y < this._activeBuffer.scrollTop) return true; |
| 3024 | const t3 = e3.params[0] || 1; |
| 3025 | for (let e4 = this._activeBuffer.scrollTop; e4 <= this._activeBuffer.scrollBottom; ++e4) { |
| 3026 | const i3 = this._activeBuffer.lines.get(this._activeBuffer.ybase + e4); |
| 3027 | i3.insertCells(0, t3, this._activeBuffer.getNullCell(this._eraseAttrData())), i3.isWrapped = false; |
| 3028 | } |
| 3029 | return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop, this._activeBuffer.scrollBottom), true; |
| 3030 | } |
| 3031 | insertColumns(e3) { |
| 3032 | if (this._activeBuffer.y > this._activeBuffer.scrollBottom || this._activeBuffer.y < this._activeBuffer.scrollTop) return true; |
| 3033 | const t3 = e3.params[0] || 1; |
no test coverage detected