Jump to Hint is a extention package for the Visual Studio Code to move cursor by simple and visual operation.
Description
This extension was inspired by Atom's Jumpy and Vim's EasyMotion.
You can jump the cursor position to any words, line heads or search results with a hint consisting of a few letters.
By typing the hint label as it is, determine the hint to jump to.
It is very simple and easy because type in the displayed characters.
Features:
Jump to words that match a regular expression.
Jump to a beginning of any lines.
Jump to results of incremental search.
Support multiple pane, jump to a document of anothre pane.
The characters to use are specified.
Two input styles can be selected.
Color of the hint label is configurable.
Usage
Enter command in the command palette (Ctrl-Shift-P or Cmd-Shift-P) or press keybinding.
Hints will be showed and you can type a character of any hints.
Once determined one, jump to that position.
Commands:
Jump to Hint: by Word
Show hints at all words and hit a key to jump to one of them.
Keybinding: ctrl+alt+j w, cmd+alt+j w
Jump to Hint: by Line
Show hints at all lines and hit a key to jump to one of them.
Keybinding: ctrl+alt+j l, cmd+alt+j l
Jump to Hint: by Search
Begin incremental search and show hints to these results. You can jump to one of them anytime during incremental search.
Keybinding: ctrl+alt+j s, cmd+alt+j s
Configrations
Configrations of extention and examples.
jumpToHint.common.wordRegExp
Regular expression used to identify words in jump-by-word mode.
Examples:
\w{2,}: Simple.
([A-Z]+([a-z0-9])*)|([a-z0-9]{2,}): Divid uppercase and lowercase.