Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.17 KB

File metadata and controls

36 lines (25 loc) · 1.17 KB

Flash Jump

Flash jump to anywhere in the editor. Inspired by the neovim flash extension

Features

  • flash-jump.flash: start flash jump
  • flash-jump.cancel: cancel flash jump during input, biding to escape by default

For vscode vim users

  1. If you find this extension does not work, add following to your settings.json:

      "extensions.experimental.affinity": {
        "vscodevim.vim": 1
      },

    This setting also improves vscode vim's performance, you might find it helpful to enable it even if you don't use this extension

  2. If you find that escape shortcut of flash-jump.cancel does not work, app following to the end of your keybindings.json:

      {
        "key": "escape",
        "command": "flash-jump.cancel",
        "when": "editorTextFocus && flash-jump.active"
      },

    The order matters here since the latter keybindings have higher priorities.