Reputation: 2328
Is there a quick way to jump to the corresponding open/close tag when editing HTML in Visual Studio Code?
Upvotes: 6
Views: 2683
Reputation: 37763
Unfortunately, no, not currently.
Visual Studio Code does have a keyboard shortcut for jumping to matching braces/brackets/parentheses (Ctrl + Shift + \
on Windows, Cmd + Shift + \
on Mac), however it does not have support for jumping to closing tags in HTML.
If you feel like it, you could always submit a feature request to the Visual Studio Code team, and maybe you'll see the feature added in a future release.
Upvotes: 5