Files
vscode/extensions/emmet
Matt Bierner b4964bcf35 Replace some common index based for loops with for-of loops
Replaces many loops of the form:

```js
for (let i = 0; i < elements.length; ++i) {
    const i = elements[i];
   ...
}
```

with:

```js
for (const element of elements) {
    ...
}
```

Mix of a horrible regex based find/replace and manual touch ups
2019-01-03 19:11:18 -08:00
..
2018-03-01 15:25:43 -08:00
2018-11-20 12:54:22 +01:00
2018-11-15 17:43:46 +01:00
2018-09-14 14:04:33 -07:00
2018-10-03 12:55:55 -07:00

Emmet integration in Visual Studio Code

Notice: This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.

Features

See Emmet in Visual Studio Code to learn about the features of this extension.

Please read the CONTRIBUTING.md file to learn how to contribute to this extension.