Reputation: 543
Is there a way to display the current hierarchy of an element in an HTML within the WebStorm 10 ID, such as is shown in Chrome 'inspect element'? Thus if you were in an <A>
inside a <DIV>
inside a <DIV>
you would see a line like
<DIV> <DIV> <A>
inside the IDE so you could navigate up from that point to an enclosing element? (I know you can successively expand the selection outwards but I'm looking for something that both shows you where you can click and then be able to do more quickly). I've looked through the docs but didn't find.
Upvotes: 0
Views: 163
Reputation: 165168
Settings/Preferences | Editor | General | Appearance
Show HTML Breadcrumbs
(there is also separate setting for XML)Show Breadcrumbs
Regardless of the IDE version -- just use the search box in the Settings/Preferences screen (top left corner) and look for "breadcrumbs".
Upvotes: 1