HTML editor - edit both start and end tags right away

Is there an HTML editor that automatically changes the end tag when editing the start tag?

+5
source share
4 answers

Aptana Studio Does. Just set the pair change tag in the menu "Window"> "Settings"> "Aptana"> "Editor"> "HTML"> "Enter". By default it is disabled.

+2
source

IntelliJ has a bunch of XML refactors , one of which is a rename tag.

+1
source

e-texteditor can do this, although not as automatically as you probably want. Ctrl + doubleclick at the beginning and end of the tags and change them that way.

0
source

IntelliJ IDEA 14.1 has this feature:

http://blog.jetbrains.com/idea/files/2015/02/simultaneous_tag_editing_2.gif

For example, if you want to change divto spanin:

<div> Text </div>

enough to edit one of the tags and the other will be changed in real time.

0
source

All Articles