cursorRight

Moving cursot to the right.

type CursorRightCommandOptions = {
    delay?: number; // delault: 0
    instant?: boolean; // delault: false
}

// first argument is distance to move
cursorRight(4, { delay: 120, instant: false })

Last updated