I've been using HTML Snippets extension for HTML snippets in VSC for a while, however in my most recent project these have stopped working. I've tried researching why this is, and I can't find a straight answer on how to fix it. Being unable to use HTML snippets is severely limiting the speed of my html coding.
2 Answers
bro, the author has disabled this extension
Update 5
Disabling this extension as its functionality has been absorbed by VS Code main html extension.
Download
You can get the previous working version here, just remove the previously installed extension, also do not update this extension after installation
7 Comments
This extension has been disabled because it is now integrated into VS Code. It is called Emmet abbreviations.
I don't use django, but the solution is the same as for JavaScript (React):
Open settings.json. For this type Ctrl+Shift+P (Win) / Cmd+Shift+P (Mac) and search for and select "Open Settings (JSON)".
Add next line (don't forget to put a comma on the previous line):
"emmet.includeLanguages": {
"javascript": "javascriptreact"
}
I'm trying a solution for django as well, but I can't verify it:
"emmet.includeLanguages": {
"django-html": "html"
}
or
"emmet.includeLanguages": {
"django": "html"
}
snippets,jsonfile inside and copy the content to your localhtml.jsonsnippet filedjango-htmluser snippets file