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

Method cursorForwardTab

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

Source from the content-addressed store, hash-verified

2916 return 0 === t3 ? delete this._activeBuffer.tabs[this._activeBuffer.x] : 3 === t3 && (this._activeBuffer.tabs = {}), true;
2917 }
2918 cursorForwardTab(e3) {
2919 if (this._activeBuffer.x >= this._bufferService.cols) return true;
2920 let t3 = e3.params[0] || 1;
2921 for (; t3--; ) this._activeBuffer.x = this._activeBuffer.nextStop();
2922 return true;
2923 }
2924 cursorBackwardTab(e3) {
2925 if (this._activeBuffer.x >= this._bufferService.cols) return true;
2926 let t3 = e3.params[0] || 1;

Callers 1

constructorMethod · 0.95

Calls 1

nextStopMethod · 0.80

Tested by

no test coverage detected