MCPcopy Index your code
hub / github.com/MiniMax-AI/cli / cursorCol

Function cursorCol

src/commands/text/repl.ts:19–19  ·  view source on GitHub ↗
(n: number)

Source from the content-addressed store, hash-verified

17function cursorUp(n: number): string { return `\x1b[${n}A`; }
18function cursorDown(n: number): string { return `\x1b[${n}B`; }
19function cursorCol(n: number): string { return `\x1b[${n}G`; }
20function clearLine(): string { return '\x1b[2K'; }
21function clearBelow(): string { return '\x1b[0J'; }
22const HIDE_CURSOR = '\x1b[?25l';

Callers 1

renderMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected