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
..
.vscode ${workspaceRoot} -> ${workspaceFolder} 2017-09-19 11:21:49 +02:00
images Add emmet icon as png #44626 2018-03-01 15:25:43 -08:00
src Replace some common index based for loops with for-of loops 2019-01-03 19:11:18 -08:00
.vscodeignore delete OSSREADME.json 2018-11-20 12:54:22 +01:00
cgmanifest.json add commitHash to cgmanifest 2018-11-15 17:43:46 +01:00
CONTRIBUTING.md Move how to contribute to a separate file for built in extensions #54098 2018-07-12 18:06:16 -07:00
extension.webpack.config.js bundle node_modules and (shallow) exclude them from the extension #56081 2018-08-22 11:35:41 +02:00
package.json Emmet helper to fix #56082 2018-09-14 14:04:33 -07:00
package.nls.json Cleaning up emmet setting descriptions 2018-07-23 15:27:55 -07:00
README.md Edit pass on new built-in extension comments (#54277) 2018-07-13 15:28:27 -07:00
tsconfig.json Add typings for emmet #59803 2018-10-03 12:55:55 -07:00
yarn.lock update yarn.lock files to use integrity 2018-09-30 16:34:43 +02: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.