(e3)
| 2871 | this._restrictCursor(), this._setCursor(this._activeBuffer.x + e3, this._activeBuffer.y + t3); |
| 2872 | } |
| 2873 | cursorUp(e3) { |
| 2874 | const t3 = this._activeBuffer.y - this._activeBuffer.scrollTop; |
| 2875 | return t3 >= 0 ? this._moveCursor(0, -Math.min(t3, e3.params[0] || 1)) : this._moveCursor(0, -(e3.params[0] || 1)), true; |
| 2876 | } |
| 2877 | cursorDown(e3) { |
| 2878 | const t3 = this._activeBuffer.scrollBottom - this._activeBuffer.y; |
| 2879 | return t3 >= 0 ? this._moveCursor(0, Math.min(t3, e3.params[0] || 1)) : this._moveCursor(0, e3.params[0] || 1), true; |
no test coverage detected