What's the best shortcut or plugin to comment out HTML/XML elements?
And also need to uncomment.
If you use emmet-vim, you can select the whole contents of the tag you would like to comment out by pressing v a t
and then press Ctrl y /
You can use a combination of matching XML tags, as can be seen in this question and Perl's search and replace.
For instance, given this snippet:
<TypeDef name="a">
<ArrayType high="14" low="0">
<UndefType type="node">
</UndefType>
</ArrayType>
</TypeDef>
Put the cursor on either the opening or closing TypeDef and type the following sequence:
vat:s/^\(.*\)$/<!-- \1 -->/
v
- puts you into visual modeat
- selects the whole XML tag:s/^\(.*\)$/<!-- \1 -->/
- surrounds each line with '<!-- ... -->'
, the comment delimiters for XMLAlternatively, you can just delete it like this:
dat
d
- delete according to the following movementsat
- as beforeTo delete id use then use vat:s/-->//
to delete comments
I use the tComment plugin. You can find a detailed video tutorial here on how to install and use it.
The plugin is very useful as it allows you to toggle comments from both the command and input interface, and you can do so using both visual mode and motions (like gcw
, or gc3w
)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With