Reputation: 897
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" ?!
Upvotes: 26
Views: 11162
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
Upvotes: 33