Find closing HTML tag in Sublime Text

html, sublimetext

Solution

Try Emmet plug-in command Go To Matching Pair:

http://docs.emmet.io/actions/go-to-pair/

Shortcut (Mac): Shift + Control + T

Shortcut (PC): Control + Alt + J

https://github.com/sergeche/emmet-sublime#available-actions

Problem

I have a very long and very nested HTML document, where I need to quickly find the closing tag. How can I do this?

Original source