pushqrdx / vscode-inline-html

🎨 Adding Syntax Highlighting, Emmet, IntelliSense support for ES6 Template Strings in Visual Studio Code.
https://marketplace.visualstudio.com/items?itemName=pushqrdx.inline-html
GNU General Public License v3.0
54 stars 15 forks source link

auto-completion of html code, including emmet, does not work #33

Closed vadimmos closed 10 months ago

vadimmos commented 1 year ago

before pressing Enter example6

after example7

pushqrdx commented 1 year ago

@vadimmos some recent vscode update really messed things up, i need to track down what broke.

Apparently "emmet.triggerExpansionOnTab": true fixes the issue, but you can also add javascript to emmet included languages like so "emmet.includeLanguages": { "javascript": "javascriptreact" }. Albeit i don't know what exactly changed that made this necessary

vadimmos commented 1 year ago

pressing TAB doesn't change anything

vadimmos commented 1 year ago

this problem greatly slows down my work

pushqrdx commented 1 year ago

@vadimmos did you try the suggestions i made above? mainly "emmet.triggerExpansionOnTab": true

This problem appeared somewhere in one of the recent updates and i haven't been able to track down it's cause yet but using one of the workarounds above mitigates it for the time being

vadimmos commented 1 year ago

Thanks to this setting, it sometimes works. But I can't yet identify why sometimes it stops working even with this setting.

pushqrdx commented 1 year ago

@vadimmos alright finally figured out what happened, it appears like they somehow screwed the emmet extension but reverted it later here, if you install latest insider vscode build, inline-html is back working as expected