7

In Vi / Vim you can move to a bracket and press % and the editor would move the cursor to the matching bracket. This saved large amounts of time when moving around the large files in the editor. Is there a Visual Studio equivalent?

Jasper
  • 2,166
  • 4
  • 30
  • 50
AnthonyLambert
  • 8,768
  • 4
  • 37
  • 72

2 Answers2

10

There is a keyboard binding Edit.GotoBrace which will do what you need.
The default binding is CTRL + ], which you can change here:

Tools -> Options -> Environment -> Keyboard

tanascius
  • 53,078
  • 22
  • 114
  • 136
0

You can press Ctrl + } to move to the matching bracket.

Jasper
  • 2,166
  • 4
  • 30
  • 50
rahul
  • 184,426
  • 49
  • 232
  • 263