Reputation: 9013
While using the latest version of Visual Studio Code I am editing a JavaScript file and often want to log output to the console. I created a user snippet to make this easier to autocomplete but I've found that the default option I get in my autocomplete is the red highlighted option below (instead of the green which is my snippet):
I'm wondering two things:
Upvotes: 6
Views: 1026
Reputation: 3611
You can add this "editor.snippetSuggestions": "top"
to your configuration to ensure snippets are always sorted on top
Upvotes: 6