Add Formatting To Custom File Association

Viewed 1455

I have an extension installed to add custom handling of a HTML/CSS/JS environment that has custom features for the Sciter UI library. However, this extension requires me to associate the file types I want to use the custom sciter verions of things, such as:

"files.associations": {
    "*.scs": "sciter-css",
    "*.shtm": "sciter-html",
    "*.shtml": "sciter-html"
},

While the majority of things are normal HTML, there are some special features that are added in the extensions language files.

Is there a way for me to use these custom associations but still have the ability to use the built-in / default HTML formatting when I tell VSCode to format the document? (Same for CSS, and JS.)

1 Answers
Related