-
Notifications
You must be signed in to change notification settings - Fork 39.1k
Emmet suggestions list missing entries after adding custom snippets.json #130868
Copy link
Copy link
Closed
Labels
author-verification-requestedIssues potentially verifiable by issue authorIssues potentially verifiable by issue authorbugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugconfirmedIssue has been confirmed by VS Code Team memberIssue has been confirmed by VS Code Team memberemmetEmmet related issuesEmmet related issuesinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersverifiedVerification succeededVerification succeeded
Milestone
Metadata
Metadata
Assignees
Labels
author-verification-requestedIssues potentially verifiable by issue authorIssues potentially verifiable by issue authorbugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugconfirmedIssue has been confirmed by VS Code Team memberIssue has been confirmed by VS Code Team memberemmetEmmet related issuesEmmet related issuesinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersverifiedVerification succeededVerification succeeded
Does this issue occur when all extensions are disabled?: Yes
Steps to Reproduce:
snippets.json, include some custom snippetWhile 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 defaultscript:srcin mysnippets.json, but now when I want to addlink:cssto my html file and start typinglink, instead of getting all suggestions likelink:css,link:print,link:favicon, etc, I'm only receiving thelinksuggestion. 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.jsonand comment out or remove"emmet.extensionsPath": [ "~/Dev/snippets"],, then the full suggestions list is shown again.