Here's a simple macro I use all the time. It surrounds the currently selected text with HTML comment tags:
I got the idea from ColdFusion Studio. Very handy. You can see how easy it would be to convert it to, eg JavaScript blockquotes. Just replace the last line with:
Code: Select all
InsertMode
ColumnModeOff
HexOff
UnixReOff
Find "^s"
Replace All SelectText "<!-- ^s -->"
Code: Select all
Replace All SelectText "/* ^s */"