vote up 0 vote down star
1

Notepad2 is by far my most favorite editor to do quick edits to HTML, XML, etc...

One thing that would be absolutely awesome is the ability to highlight a chunk of XML and comment it out or uncomment it.

Is this possible with Notepad2?

flag

2 Answers

vote up 2 vote down check

How about Ctrl+Shift+Q - release notes

link|flag
Control+Shift+Q inserts a DC1 and Control+Q quits the app for some reason. – AngryHacker Sep 18 at 21:21
I've confirmed that those keyboard combinations work for me (version 4.0.22) – bdukes Sep 18 at 21:25
This command appears to insert C style comments, which doesn't help your XML scenario, anyway. Ctrl+Shift+Q wraps the text in /*...*/, Ctrl+Q appends // to the front of each line. – bdukes Sep 18 at 21:26
Yeah, even though I have the XML scheme as the default, it still places C style comments, which makes it unusable for my scenario. – AngryHacker Sep 18 at 21:48
vote up 0 vote down

I don't know about Notepad2, but Notepad++ supports this. Ctrl+Shift+Q works for me for XML-style comments with the XML language selected. I'm using Notepad++ v5.1.1 (UNICODE)

Example:

<note> 
<to>Tove</to> 
<from>Jani</from> 
<heading>Reminder</heading> 
<body>Don't forget me this weekend!</body>

I selected the "to" and "from" lines and hit Ctrl+Shift+Q:

<note> 
<!--    <to>Tove</to> 
<from>Jani</from>  -->
<heading>Reminder</heading> 
<body>Don't forget me this weekend!</body>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.