wmaurer/vscode-jumpy

get command 'extension.jumpy-exit' not found error when trying to exit jumpy

Opened this issue ยท 15 comments

I copied the configuration of exiting jumpy mode from the README file but I also get this. error.

I see this issue too.

@wmaurer Same issue, VSCode v 1.13.1, jumpy 0.3.1

jumpy-demo

having same issue.
vscode Version 1.14.2 (1.14.2)
jumpy 0.3.1

Same issue. vscode -latest

any updates here? :(

This extension simply doesn't work for me. I enter jumpy word mode and see the white two letter characters against letters.. but anything I press after that just types.. Then when I select exit jumpy mode, I get what is described here.

just tried Vim extension and found exit jumpy command unavailable.

just uninstall it. It simply does not work. (I am using it with vim) no hope. until then, uninstall it

in the latest version, the command has changed. I used the following config which is worked.

{
    "key": "ctrl+alt+j",
    "command": "extension.jumpy-word",
    "when": "editorTextFocus"
  },
  {
    "key": "Escape",
    "command": "extension.jumpy-exit",
    "when": "editorTextFocus && jumpy.isJumpyMode"
  }

Same issue.

Now I use Code Ace Jumper extension, which works really well with the Neo Vim extension.

    {
      "key": "shift+enter",
      "command": "extension.aceJump.multiChar",
      "when": "editorTextFocus"
    }
atil commented

Can confirm this is related to the Vim extension. It's working without Vim but with it, I get the same error.
Adding the exit key to "vim.handleKeys" (which defines the keys to be relayed to vscode itself) doesn't fix the issue

it conflict with vim plugin

This should be fixed by following this comment, if you're interested, Jump is another alternative.

In my case, it was a conflict with the Overtype extension