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

Function cursorForward

src/ink/termio/csi.ts:139–141  ·  view source on GitHub ↗
(n = 1)

Source from the content-addressed store, hash-verified

137
138/** Move cursor forward n columns (CSI n C) */
139export function cursorForward(n = 1): string {
140 return n === 0 ? '' : csi(n, 'C')
141}
142
143/** Move cursor back n columns (CSI n D) */
144export function cursorBack(n = 1): string {

Callers 1

cursorMoveFunction · 0.85

Calls 1

csiFunction · 0.85

Tested by

no test coverage detected