0

In Visual Studio Code, is there a way to insert an HTML comment, like

<!-- something here -->

just like you can insert a div tag with a class of "foo" by doing:

div.foo + [TAB]

That results in

<div class="foo"></div>
fduayer
  • 770
  • 1
  • 7
  • 23

2 Answers2

1

In the latest versions the 'c' character is transformed into a comment.

rsan
  • 1,887
  • 2
  • 17
  • 23
0

Not that I know of. cc:ie and cc:noie are the closest I know of for comments but this is not what you want.

Yves Tkaczyk
  • 521
  • 5
  • 9