How to configure JS snippets in VS code

I am using VS code to write JS code. In version 1.0, it worked very well. After upgrading to version 1.1, what happens is that when I write the code, intellisense triggers, but snippets are not the first option.

Ie: while I call func ... intellinc triggers and offer me a "function", but not as fragments, but as a variable name or the like, I think.

In the image below you can see how it looks on my screen:

Here you can see what is happening.

How can I fix it so that it works again with default fragments?

Note. The same thing happens with all regular commands like if, log, for, etc.

+4
source share
1 answer
  • Press Ctrl + Shift + P
  • "" ( , )
  • : "editor.snippetSuggestions": "top"

, , - . VSCode , . , .

Edit:

"editor.snippetSuggestions": "inline", , -, . , - .

+4

All Articles