PhpStorm hotkey to jump to HTML end tag

Having an HTML tag section:

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

Suppose the carriage is at the beginning of the <div> ,
is there any key to move the cursor to close </div> ?

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

 .myClass { .... } 

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

The following is the default phpStorm key card . I cannot find the key I'm looking for.

+7
php phpstorm jetbrains
source share
3 answers

Ctrl +] works fine in .html files. But this fails for HTML tags in .php .

This is a known issue - sign up for a ticket (star / voice / comment) to receive a progress notification:

+4
source share

Using PhpStorm 10 && 2016.2:

Ctrl + shift + m works just fine!

+9
source share

Ctrl + shift + m works fine in PHPstorm2016.2!

+3
source share

All Articles