Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS Code Intellisense don't suggest snippet at first

I want to use code snippets in VSCode. But when I type, for example, for in javascript file, the Intellisense doesn't suggest snippet "for-loop" - I need to manually scroll the dropdown and select it. Is there any way to make VSCode to suggest snippets at first? Thank you!

UPD: I have found the person with same problem, but he has no answers - link

like image 649
Agnarh Avatar asked Jun 16 '16 15:06

Agnarh


People also ask

How do I fix VS code IntelliSense?

Troubleshooting# If you find IntelliSense has stopped working, the language service may not be running. Try restarting VS Code and this should solve the issue. If you are still missing IntelliSense features after installing a language extension, open an issue in the repository of the language extension.

How do you turn on suggestions in VS code?

You can trigger IntelliSense in any editor window by typing Ctrl+Space or by typing a trigger character (such as the dot character (.) in JavaScript).


1 Answers

You need to use editor.snippetSuggestions config option with "top" value. Please, see Customizing IntelliSense article for more tips and tricks.

like image 81
Kavu Avatar answered Sep 28 '22 07:09

Kavu