- Notifications
You must be signed in to change notification settings - Fork33.8k
Description
Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.59.0
- OS Version: Kubuntu 20.04
Steps to Reproduce:
- create
snippets.json
, include some custom snippet - add it to Settings > Emmet: Extensions Path
While the custom snippet works fine in my html files, some default Emmet snippets suggestions are not showing anymoreeven though they're not being replaced bysnippets.json
. In my case, for example, I indeed replaced the defaultscript:src
in mysnippets.json
, but now when I want to addlink:css
to my html file and start typinglink
, instead of getting all suggestions likelink:css
,link:print
,link:favicon
, etc, I'm only receiving thelink
suggestion. I'd like to note that if I manually type "link:css" and hitenter
, the snippet still works, but the full suggestions list is gone. If I go tosettings.json
and comment out or remove"emmet.extensionsPath": [ "~/Dev/snippets"],
, then the full suggestions list is shown again.