vscode-jumpy icon indicating copy to clipboard operation
vscode-jumpy copied to clipboard

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

Open nikitavoloboev opened this issue 8 years ago • 15 comments

2016-11-29 at 15 20

nikitavoloboev avatar Nov 29 '16 14:11 nikitavoloboev

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

arvinsim avatar Jan 17 '17 04:01 arvinsim

I see this issue too.

softwareprototype avatar Jan 20 '17 21:01 softwareprototype

@wmaurer Same issue, VSCode v 1.13.1, jumpy 0.3.1

jumpy-demo

alexgorbatchev avatar Jun 15 '17 21:06 alexgorbatchev

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

tamanishi avatar Jul 22 '17 05:07 tamanishi

Same issue. vscode -latest

westtrade avatar Dec 20 '18 01:12 westtrade

any updates here? :(

AndersonZacharyT avatar Jan 07 '19 15:01 AndersonZacharyT

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.

robertmarkbram avatar May 24 '19 04:05 robertmarkbram

just tried Vim extension and found exit jumpy command unavailable.

nomadbard916 avatar May 02 '20 17:05 nomadbard916

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

Awannaphasch2016 avatar Jul 31 '20 03:07 Awannaphasch2016

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"
  }

samxcode avatar Oct 26 '20 09:10 samxcode

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"
    }

LoneExile avatar Apr 22 '21 13:04 LoneExile

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

atil avatar Aug 07 '21 22:08 atil

it conflict with vim plugin

fontWeb avatar May 27 '22 16:05 fontWeb

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

wenfangdu avatar May 31 '22 12:05 wenfangdu

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

colinbr96 avatar Sep 11 '23 05:09 colinbr96