Is it possible to make coc-emmet work for template (for httpabbreviations) and style (for css abbreviations) sections of Vue files (and no abbreviations for script section at all)?
At the moment I can get following setups:
with "emmet.includeLanguages": { "vue-html": "html" } there is no expansion happening in Vue file (vue filetype) at all
with "emmet.includeLanguages": { "vue": "html" } I get html only expansions working in all three sections (template, script, style). No css expansions in style section though, only html expansions.
Is it possible to make
coc-emmet
work fortemplate
(forhttp
abbreviations) andstyle
(forcss
abbreviations) sections of Vue files (and no abbreviations forscript
section at all)?At the moment I can get following setups:
"emmet.includeLanguages": { "vue-html": "html" }
there is no expansion happening in Vue file (vue
filetype) at all"emmet.includeLanguages": { "vue": "html" }
I gethtml
only expansions working in all three sections (template
,script
,style
). Nocss
expansions instyle
section though, onlyhtml
expansions.