Disable visual studio autocomplete comment in javascript

My problem is simple. Whenever I type "/ *" in a javascript or typescript file in VisualStudio, the editor adds "* /", so I get: "/ * * /". I like to disable this autocomplete function because it is annoying. I just want to type "/ *" and have just that.

Where can I turn off this autocomplete feature? I was looking for resharper and visualstudio options and I couldn't find anything about it.

+4
source share
3 answers

I also had this problem for C ++. Try disabling "Menu | Tools | Options | | General | Auto-complete brackets" - this worked for me. I could not reproduce your problem using the JavaScript Script1.js file. For JavaScript, I always got only "/ *". However, this may help.

+1
source

You need to disable intellisense

See the tools | Options | Text editor | C # | Intellisense

-2
source

IntelliSense JavaScript. , . ,

-2

Source: https://habr.com/ru/post/1569700/


All Articles