pranaygp / vscode-css-peek

A vscode extension for peeking at CSS definitions from a class or id tag in HTML
MIT License
147 stars 32 forks source link

Twig File Support #26

Open jonasflint opened 6 years ago

jonasflint commented 6 years ago

Currently I don't see any css previewing for .twig files. Can this be added?

micperr commented 6 years ago

Add this to your settings:

"files.associations": {
    "*.twig": "html"
},
GianlucaBergomi commented 4 years ago

Add this to your settings:

"files.associations": {
    "*.twig": "html"
},

In this way you are telling visual studio code to open twig file as html and you will lose the color map of the twig element. I've tried to add "twig" to "Peek From Languages" but it's not working. Any idea? Thanks