#18880
ITSecMedia
Participant

Oh and another feature PLEASE …. Often I have to edit HTM files …. I know we have the snippets and the toolbar BUT we use the keyboard ….

Lets say I have a large html markup open in EmEditor and then I need to attach <em> <strong> or <a></a> tags around a selected phrase ….

Select the phrase inside the HTML … (ALT+SHIFT+W) (wrap with tag)… the phrase is wrapped with <p>my selected phrase</p> and the cursor is inside the <p> tag selected-p waiting for me to type and change the p to whatever em, strong...— .specialty is a <a href as the editor has to detect that the attribute shall not be applied to the closing tag… the auto closing tag just follows your change of course…

This way you can edit so fast HTML ….

CTRL+A (select *.* )


aaaaaa
bbbbbb
cccccc
dddddd

(CTRL+SHIFT+L). split selection into lines .. cursor for each line … still whole block selected

(ALT+SHIFT+W) wrap with tag (default-p)


<p>aaaaaa</p>
<p>bbbbbb</p>
<p>cccccc</p>
<p>dddddd</p>

type li


<li>aaaaaa</li>
<li>bbbbbb</li>
<li>cccccc</li>
<li>dddddd</li>

(CTRL+A) select * again

(ALT+SHIFT+W) wrap with tag

type ul


<ul><li>aaaaaa</li>
<li>bbbbbb</li>
<li>cccccc</li>
<li>dddddd</li></ul>

unsorted linked list over multiple lines….

A few editors offer this feature and I would love to see that in EmEditor …

I know its rather going into direction HTML editor not … TXT Editor …. but today there is so much HTML editing everyday….