vscode-html-css icon indicating copy to clipboard operation
vscode-html-css copied to clipboard

Fix completion not working for non-HTML files

Open absszero opened this issue 1 year ago • 0 comments

When adding a new file type to "css.enabledLanguages". Ex.

"css.enabledLanguages": [
    "vue",
    "html"
]

Auto completion only trigger outside HTML attributes . Ex.

<template>
    <a class="text-link"  | ></a>
</template>

It will not trigger within HTML attributes. (Only works when Vue language extensions are not installed.)

<template>
    <a class="text-link | " ></a>
</template>

absszero avatar Jun 29 '24 23:06 absszero