You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello!
Don't work css class autocomplete for *.svelte files.
It is new javascript framework. You can see: https://svelte.dev/
in short - this is an analogue of Vue.js cli
Vue.js has a * .vue file extension, and Svelte has - * .svelte
The text was updated successfully, but these errors were encountered:
you can manually add support by going into you're extension folder zignd.html-css-class-completion-x.xx.x/out/src/extension.js
// HTML based extensions['html','django-html','razor','php','blade','vue','twig','markdown','erb','handlebars','ejs','svelte',// <== add this].forEach((extension)=>{context.subscriptions.push(provideCompletionItemsGenerator(extension,/class=["|']([\w-]*$)/));});
and you should disable auto-update for extensions if you don't want to have to do this at each update
Hello!
Don't work css class autocomplete for *.svelte files.
It is new javascript framework. You can see: https://svelte.dev/
in short - this is an analogue of Vue.js cli
Vue.js has a * .vue file extension, and Svelte has - * .svelte
The text was updated successfully, but these errors were encountered: