volar-plugins icon indicating copy to clipboard operation
volar-plugins copied to clipboard

HTML and CSS services should collect custom data added by other extensions

Open Princesseuh opened this issue 1 year ago • 0 comments

In VS Code, extensions can add custom data through the following code:

{
  "contributes": {
    "html": {
      "customData": ["./html.html-data.json"]
    },
    "css": {
      "customData": ["./css.css-data.json"]
    }
  }
}

At this time, this custom data isn't found by the HTML and CSS services, leading to downstream issues like this one: https://github.com/withastro/astro/issues/14674

Princesseuh avatar Mar 21 '24 21:03 Princesseuh