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

Method finalSelectionStart

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

Source from the content-addressed store, hash-verified

1602 this.selectionStart = void 0, this.selectionEnd = void 0, this.isSelectAllActive = false, this.selectionStartLength = 0;
1603 }
1604 get finalSelectionStart() {
1605 return this.isSelectAllActive ? [0, 0] : this.selectionEnd && this.selectionStart && this.areSelectionValuesReversed() ? this.selectionEnd : this.selectionStart;
1606 }
1607 get finalSelectionEnd() {
1608 if (this.isSelectAllActive) return [this._bufferService.cols, this._bufferService.buffer.ybase + this._bufferService.rows - 1];
1609 if (this.selectionStart) {

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected