-3

I don't know how to jump over parentheses in vscode, and using arrows is really slowing me down. Does anybody know how to jump over parentheses in vscode?

And yes, I know the TabOut extension, but when I use TabOut and I press Tab, the cursor jumps to the start of the parentheses, not over them.

wjandrea
  • 28,235
  • 9
  • 60
  • 81

2 Answers2

0

You can use the extension Extra Context to select a different command based on the character right of the cursor, You can use multi-command if you need to make multiple cursor movements.

rioV8
  • 24,506
  • 3
  • 32
  • 49
  • Probably the simplest way is to use multi-command to `Go to Bracket` and then arrow right once. – Mark Jan 27 '23 at 02:15
0

You could use shortcuts go to bracket Ctrl+Shift+\.

If you want, you can customize the shortcut key for this function in keyboard shortcuts(ctrl+k ctrl+s).

enter image description here

Use this shortcut key with to skip brackets.

MingJie-MSFT
  • 5,569
  • 1
  • 2
  • 13