jtkDvlp / web-mode-edit-element

Helper-functions for attribute- and element-handling
GNU General Public License v2.0
19 stars 2 forks source link

Add info about current position in the tree structure #6

Open fniessen opened 5 years ago

fniessen commented 5 years ago

Dear,

One great addition to your tools would be to display somewhere (header-line? mode-line?) the information about the current position, for example:

html > head > meta

if we are somewhere on a meta tag:

<html>
    <head>
        <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
        <meta http-equiv="Pragma" content="no-cache" />
        <meta http-equiv="Expires" content="0" />
            <META HTTP-EQUIV="REFRESH" CONTENT="0; URL=login.htm">
        <title>Test</title>
    </head>
    <body>
</html>