Shortcut key in PhpStorm to move to HTML end tag

URL87 picture URL87 · Aug 21, 2014 · Viewed 7.1k times · Source

Having a section of HTML tag:

<div>
    /* a long long text */
</div> 

Suppose the caret is at the begin of the tag <div>,
is there any key to move the caret to the closing </div>?

There is a similar concept on CSS (doesn't work on HTML) that works fine:

.myClass {
    ....
}

in this case, Ctrl + ]/[ moves to the code block end/start.

Here is the PhpStorm Default Keymap. I can't find the key I'm looking for.

Answer

azerafati picture azerafati · Mar 5, 2016

Using PhpStorm 10 && 2016.2:

Ctrl + shift + m works just fine!