Home

Move

Move the cursor to locations unreachable by VS Code's built-in commands.

Available commandsMove

Duplications!

Some of these commands already exist as built-in VS Code commands. They're included in CursorPlus to provide a complete set of commands in one place.

Nameiddescription
Line StartcursorPlus.move.lineStartMove the cursor to the first character
Up Line StartcursorPlus.move.upLineStart└─ of the previous line
Down Line StartcursorPlus.move.downLineStart└─ of the next line
Text StartcursorPlus.move.textStartMove the cursor to the first non-whitespace character
Up Text StartcursorPlus.move.upTextStart└─ of the previous line
Down Text StartcursorPlus.move.downTextStart└─ of the next line
Text EndcursorPlus.move.textEndMove the cursor to the last non-whitespace character
Up Text EndcursorPlus.move.upTextEnd└─ of the previous line
Down Text EndcursorPlus.move.downTextEnd└─ of the next line
Line EndcursorPlus.move.lineEndMove the cursor to the last character
Up Line EndcursorPlus.move.upLineEnd└─ of the previous line
Down Line EndcursorPlus.move.downLineEnd└─ of the next line
WrappercursorPlus.move.wrapperPick a move command to run.

Wrapper command?

Learn more in the Wrapper command documentation.

ArgsMove

This command takes no arguments.

ExamplesMove

Keyboard shortcutExamplesMove

keybindings.json
[
  {
    "key": "ctrl+j k",
    "command": "cursorPlus.move.textStart",
    "when": "editorTextFocus"
  }
]

VideoExamplesMove

ConfigurationMove