Try to comment following line in HTML:
Currently produced incorrect HTML comment string:
Expecting result:
tcomment has settings which allows to set replacement:
let g:tcomment#replacements_xml = {
\ '<!--': '<!--',
\ '-->': '-->'
\ }
When uncommenting replacement performed in the reverse order.
How is it possible to achieve something similar?
Try to comment following line in HTML:
aaa --> bbbCurrently produced incorrect HTML comment string:
Expecting result:
<!-- aaa --> bbb -->tcommenthas settings which allows to set replacement:When uncommenting replacement performed in the reverse order.
How is it possible to achieve something similar?