ow-- / vscode-subword-navigation

Provides subword navigation for Visual Studio Code.
MIT License
51 stars 10 forks source link

Add SubwordEnd, SubwordStart commands #29

Open ian-h-chamberlain opened 6 years ago

ian-h-chamberlain commented 6 years ago

VSCode by default includes several options for word navigation:

cursorWordLeft
cursorWordRight
cursorWordEndRight
cursorWordEndRightSelect
cursorWordStartLeft
cursorWordStartLeftSelect
etc.

It would be nice to have similar commands in this extension, e.g.

subwordNavigation.cursorSubwordRight
subwordNavigation.cursorSubwordEndRight
subwordNavigation.cursorSubwordEndRightSelect
subwordNavigation.cursorSubwordStartRight
subwordNavigation.cursorSubwordStartRightSelect
etc.

instead of just *SubwordRight, *SubwordLeft.

Hopefully this isn't too difficult to add since the basic navigation is already in place.

ow-- commented 6 years ago

Oh wow, I never answered this? In my head I did. Sorry.

So if I read this correctly you'd like the option to be able to choose to skip over whitespace/underscores and in what direction? Rather than how it stops at both sides now?

ge-gutierrezneri commented 5 years ago

Hello, is this being looked into by any chance?