fduayer
fduayer

Reputation: 810

Visual Studio Code's Zen coding HTML comment

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>

Upvotes: 0

Views: 322

Answers (2)

rsan
rsan

Reputation: 1887

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

Upvotes: 1

Yves Tkaczyk
Yves Tkaczyk

Reputation: 531

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.

Upvotes: 0

Related Questions