N++ selection in edit mode
-
How could I make N++ select a whole block when editing SGML/XML/HTML type langages ?
-
You provide little detail, but I’ll guess that a technique that might satisfy is to do a regular expression search something like the following:
(?s)starttag.*?endtag
where you would supply the text for the
starttag
andendtag
parts.