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

Function cursorTo

src/ink/termio/csi.ts:149–151  ·  view source on GitHub ↗
(col: number)

Source from the content-addressed store, hash-verified

147
148/** Move cursor to column n (1-indexed) (CSI n G) */
149export function cursorTo(col: number): string {
150 return csi(col, 'G')
151}
152
153/** Move cursor to column 1 (CSI G) */
154export const CURSOR_LEFT = csi('G')

Callers 1

writeDiffToTerminalFunction · 0.85

Calls 1

csiFunction · 0.85

Tested by

no test coverage detected