I've been trying out NTVS, and I can't figure out how to get JS-style comments to autocomplet in .js files that are part of an NTVS project. I have Resharper and VS Web Essentials installed as well.
When I'm editing a JavaScript file, I want to type this:
```
/**
```
And the editor should autocomplete (where the pipe is the cursor):
```
/** | */
```
Now, I should be able to press enter as many times as I want when I edit this comment, and it should add *s at the beginning of the line, indented as appropriate.
When I'm editing .ts files and .js files that are not part of an NTVS project (e.g. as part of a website), then this desired behavior occurs. However, I can't figure out how to get it to work for .js files in an NTVS project. It seems like a pretty minor thing to be missing but it's actually pretty irritating to have to manually indent and align all of the *s properly to fit the style guidelines.
Is there an option that I'm missing somewhere or is this not supported right now? Thanks for your help.
Comments: This appears to be fixed in Web Essentials 2.0.6 nightly build. I recently submitted [an issue](https://github.com/madskristensen/WebEssentials2013/issues/860) where I wasn't getting the WebEssentials JSHint feature working in a NTVS project. [The fix](https://github.com/madskristensen/WebEssentials2013/pull/862) was for Web Essentials to treat NTVS .js files like standard .js files. Note: you can do a one-time install of [the latest nightly build for Web Essentials](http://vswebessentials.com/nightly/feed/webessentials2013.vsix) and you'll still get the official build whenever 2.1 is released.
When I'm editing a JavaScript file, I want to type this:
```
/**
```
And the editor should autocomplete (where the pipe is the cursor):
```
/** | */
```
Now, I should be able to press enter as many times as I want when I edit this comment, and it should add *s at the beginning of the line, indented as appropriate.
When I'm editing .ts files and .js files that are not part of an NTVS project (e.g. as part of a website), then this desired behavior occurs. However, I can't figure out how to get it to work for .js files in an NTVS project. It seems like a pretty minor thing to be missing but it's actually pretty irritating to have to manually indent and align all of the *s properly to fit the style guidelines.
Is there an option that I'm missing somewhere or is this not supported right now? Thanks for your help.
Comments: This appears to be fixed in Web Essentials 2.0.6 nightly build. I recently submitted [an issue](https://github.com/madskristensen/WebEssentials2013/issues/860) where I wasn't getting the WebEssentials JSHint feature working in a NTVS project. [The fix](https://github.com/madskristensen/WebEssentials2013/pull/862) was for Web Essentials to treat NTVS .js files like standard .js files. Note: you can do a one-time install of [the latest nightly build for Web Essentials](http://vswebessentials.com/nightly/feed/webessentials2013.vsix) and you'll still get the official build whenever 2.1 is released.