MCPcopy Create free account
hub / github.com/codeaashu/claude-code / clearMarkers

Method clearMarkers

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

Source from the content-addressed store, hash-verified

4030 return e3 >= this._cols ? this._cols - 1 : e3 < 0 ? 0 : e3;
4031 }
4032 clearMarkers(e3) {
4033 this._isClearing = true;
4034 for (let t3 = 0; t3 < this.markers.length; t3++) this.markers[t3].line === e3 && (this.markers[t3].dispose(), this.markers.splice(t3--, 1));
4035 this._isClearing = false;
4036 }
4037 clearAllMarkers() {
4038 this._isClearing = true;
4039 for (let e3 = 0; e3 < this.markers.length; e3++) this.markers[e3].dispose(), this.markers.splice(e3--, 1);

Callers 1

_resetBufferLineMethod · 0.80

Calls 2

spliceMethod · 0.80
disposeMethod · 0.65

Tested by

no test coverage detected