How can I create custom emmet snippet with the highest possible priority to display in vscode?
When I updated html.json
to add my own snippet for comment (with autor), I still see default emmet "c" snippet as first in list:
"Comment": {
"prefix": "c",
"body":[
"<!-- atiris: $1 -->$2"
],
"description": "Insert comment into html code"
}
That means I always have to choose the second option first.
Is there any property / settings to prioritize my own snippets?
"editor.snippetSuggestions": "top"
;) – Lovins