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

Method cursorDown

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

Source from the content-addressed store, hash-verified

2875 return t3 >= 0 ? this._moveCursor(0, -Math.min(t3, e3.params[0] || 1)) : this._moveCursor(0, -(e3.params[0] || 1)), true;
2876 }
2877 cursorDown(e3) {
2878 const t3 = this._activeBuffer.scrollBottom - this._activeBuffer.y;
2879 return t3 >= 0 ? this._moveCursor(0, Math.min(t3, e3.params[0] || 1)) : this._moveCursor(0, e3.params[0] || 1), true;
2880 }
2881 cursorForward(e3) {
2882 return this._moveCursor(e3.params[0] || 1, 0), true;
2883 }

Callers 2

constructorMethod · 0.95
cursorNextLineMethod · 0.95

Calls 1

_moveCursorMethod · 0.95

Tested by

no test coverage detected