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

Method _isClickInSelection

src/server/web/public/terminal.js:2067–2070  ·  view source on GitHub ↗
(e3)

Source from the content-addressed store, hash-verified

2065 this._refreshAnimationFrame = void 0, this._onRedrawRequest.fire({ start: this._model.finalSelectionStart, end: this._model.finalSelectionEnd, columnSelectMode: 3 === this._activeSelectionMode });
2066 }
2067 _isClickInSelection(e3) {
2068 const t3 = this._getMouseBufferCoords(e3), i3 = this._model.finalSelectionStart, s3 = this._model.finalSelectionEnd;
2069 return !!(i3 && s3 && t3) && this._areCoordsInSelection(t3, i3, s3);
2070 }
2071 isCellInSelection(e3, t3) {
2072 const i3 = this._model.finalSelectionStart, s3 = this._model.finalSelectionEnd;
2073 return !(!i3 || !s3) && this._areCoordsInSelection([e3, t3], i3, s3);

Callers 1

rightClickSelectMethod · 0.80

Calls 2

_getMouseBufferCoordsMethod · 0.80
_areCoordsInSelectionMethod · 0.80

Tested by

no test coverage detected