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 anymore even though they're not being replaced by snippets.json
. In my case, for example, I indeed replaced the default script:src
in my snippets.json
, but now when I want to add link:css
to my html file and start typing link
, instead of getting all suggestions like link:css
, link:print
, link:favicon
, etc, I'm only receiving the link
suggestion. I'd like to note that if I manually type "link:css" and hit enter
, the snippet still works, but the full suggestions list is gone. If I go to settings.json
and comment out or remove "emmet.extensionsPath": [ "~/Dev/snippets"],
, then the full suggestions list is shown again.