Filip Petrovic
Filip Petrovic

Reputation: 897

How to change Intellisense priority in Visual Studio Code

How do I change the priority of the abbreviation recommendations inside Visual Studio Code? The file in question is a .scss file and I have tried with and without the Sass extension in Code installed. As far as I can tell currently it just lists them out in an alphabetical order. Is there any way to change this? I am genuinely surprised about how many people praise this editor when it has such huge flaws, that to my knowledge aren't solved yet.

https://github.com/Microsoft/vscode/issues/26127 says to "Disable the quick suggestions altogether" ?!

Visual Studio Code recommending <code>flex-flow</code> instead of <code>font-family</code>

Upvotes: 26

Views: 11162

Answers (1)

Matt Bierner
Matt Bierner

Reputation: 65533

In VS Code 1.16 (the current insiders build) you can force emmet suggestions to the top by setting:

"editor.snippetSuggestions": "top",
"emmet.showSuggestionsAsSnippets": true

enter image description here

Upvotes: 33

Related Questions