(e3)
| 3038 | return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop, this._activeBuffer.scrollBottom), true; |
| 3039 | } |
| 3040 | deleteColumns(e3) { |
| 3041 | if (this._activeBuffer.y > this._activeBuffer.scrollBottom || this._activeBuffer.y < this._activeBuffer.scrollTop) return true; |
| 3042 | const t3 = e3.params[0] || 1; |
| 3043 | for (let e4 = this._activeBuffer.scrollTop; e4 <= this._activeBuffer.scrollBottom; ++e4) { |
| 3044 | const i3 = this._activeBuffer.lines.get(this._activeBuffer.ybase + e4); |
| 3045 | i3.deleteCells(this._activeBuffer.x, t3, this._activeBuffer.getNullCell(this._eraseAttrData())), i3.isWrapped = false; |
| 3046 | } |
| 3047 | return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop, this._activeBuffer.scrollBottom), true; |
| 3048 | } |
| 3049 | eraseChars(e3) { |
| 3050 | this._restrictCursor(); |
| 3051 | const t3 = this._activeBuffer.lines.get(this._activeBuffer.ybase + this._activeBuffer.y); |
no test coverage detected