MCPcopy Index your code
hub / github.com/codeaashu/claude-code / selectAll

Method selectAll

src/server/web/public/terminal.js:2085–2087  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 }

Callers 2

selectAllMethod · 0.45
selectAllMethod · 0.45

Calls 2

fireMethod · 0.80
refreshMethod · 0.45

Tested by

no test coverage detected