2

I like the behavior of Jumpy, but it only supports jump to the start of a word, is there any way to jump to the end of a word in VSCode?

Demo of jumping to the start of a word in Jumpy:

enter image description here

Wenfang Du
  • 8,804
  • 9
  • 59
  • 90
  • Hi, original author of Jumpy for Atom here. I've ported Jumpy to VS Code ("Jumpy2") https://marketplace.visualstudio.com/items?itemName=DavidLGoldberg.jumpy2 I use vim's 'e' command to go the end of the word. I agree with the below threads that Non vim users usually just use ctrl + (right arrow). I like the looks of your feature though, can you switch it while the normal front of the word jump is enabled? – David Feb 04 '22 at 14:42
  • @David Yes, there're four different modes, you can switch to another mode while one mode is enabled. I agree this feature might not be very important for vim/neovim users, but I think it's quite convenient without doing the extra `e`/`ctrl + right arrow`. – Wenfang Du Jun 09 '22 at 00:50

1 Answers1

3

You can use the Jump extension, it supports:

  • Jump to the start of a word
  • Jump to the end of a word
  • Select to the start of a word
  • Select to the end of a word

Demo of jumping to the end of a word:

Jump to the End of a word

Wenfang Du
  • 8,804
  • 9
  • 59
  • 90