Jump to opening tag in VS Code?

Viewed 855

When i'm debugging html files on VS Code, how can i simply jump to the opening tag of a tag ?

Let's say i'm on the tag (line 2938) of the example below ; i just want to jump for its opening tab, but it's a large file and i can't find it. Is there a shortcut for that ?

When the cursor is on this tag, it will highlight the opening , but as it's hundred of lines above, i need to scroll and manually search for it, i'm sure that is a better way !

enter image description here

Thanks

1 Answers

run the Emmet: go to matching pair command.

place the cursor on the closing tag. Press F1. type matching pair or any portion of the matching pair command. Then press enter.

Related