HTML Snippets not working in VS Code heex files

Bashing my head here… Using VS Code for Elixir, Phoenix, etc. It’s great but I can not get html snippets to work in the html.heex files. If I open an html file, the HTML snippets work as expected. In HEEX files, nope.

In settings.json, I’ve got:

"emmet.includeLanguages": {
        "phoenix-heex": "html",
        "elixir": "html",
        "html-eex": "html"
    },
    "tailwindCSS.includeLanguages": {
        "phoenix-heex": "html",
        "elixir": "html",
        "html-eex": "html"
    },

Still no go. I really am flummoxed at this point.

–Jamie

Finally found this in my settings.json file:

"emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly",

Once I commented it out, things work again. No idea why I put there in the first place.