> For the complete documentation index, see [llms.txt](https://typing-flow.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://typing-flow.gitbook.io/docs/introduction/commands/cursorright.md).

# cursorRight

Moving cursot to the <mark style="color:orange;">right</mark>.

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

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