()
| 2083 | return !!s3 && (this._selectWordAt(s3, t3), this._model.selectionEnd = void 0, true); |
| 2084 | } |
| 2085 | selectAll() { |
| 2086 | this._model.isSelectAllActive = true, this.refresh(), this._onSelectionChange.fire(); |
| 2087 | } |
| 2088 | selectLines(e3, t3) { |
| 2089 | this._model.clearSelection(), e3 = Math.max(e3, 0), t3 = Math.min(t3, this._bufferService.buffer.lines.length - 1), this._model.selectionStart = [0, e3], this._model.selectionEnd = [this._bufferService.cols, t3], this.refresh(), this._onSelectionChange.fire(); |
| 2090 | } |