language-tools: Emmet doesn't work properly

In raw html files typing abbreviations invokes emmet suggestions and live-preview: CleanShot 2021-11-21 at 13 20 33

In <template> section of Vue file there is not emmet suggestions nor live-preview: CleanShot 2021-11-21 at 13 24 30

I believe such “non-full” support of emmet is the cause of emmet not working properly together with VSCodeVim extension. Whenever an abbreviation is expanded, VSCodeVim goes into “Normal” mode => the following typing doesn’t work as expected CleanShot 2021-11-21 at 13 30 41

About this issue

  • Original URL
  • State: closed
  • Created 3 years ago
  • Comments: 15 (6 by maintainers)

Most upvoted comments

Solution

  • Setting UI
  1. Search emmet.includeLanguages
  2. Add vue:html official example vue-html:html didn’t work, don’t knwon why.

OR

  • Setting File
"emmet.includeLanguages": {
  "vue": "html"
},