b4964bcf35
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 |
||
---|---|---|
.. | ||
.vscode | ||
images | ||
src | ||
.vscodeignore | ||
CONTRIBUTING.md | ||
README.md | ||
cgmanifest.json | ||
extension.webpack.config.js | ||
package.json | ||
package.nls.json | ||
tsconfig.json | ||
yarn.lock |
README.md
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.