ventojs / vscode-vento

Vento for Visual Studio Code
MIT License
11 stars 4 forks source link

vento and VScode doesn't auto complete on tab #1

Closed tjaynl closed 1 year ago

tjaynl commented 1 year ago

I'm intressed in using vento but i have the following issue when using it in VSCode, i installed the plugin but vscode still doesn't auto complete on hitting TAB. Same goes for auto completing emmet.

Am i missing something?

oscarotero commented 1 year ago

In my VSCode I can press TAB after typing any Vento tag, for example for:

imaxe

What keywords are you using?

About emmet support, yes you're right. I have to investigate how to enable emmet by default in the plugin configurarion. As a workaround, you can enable it in the .vscode/settings.json file:

{
  "emmet.includeLanguages": {
    "vento": "html"
  }
}
oscarotero commented 1 year ago

Ok, I just released v0.0.4 with default support for emmet.

tjaynl commented 1 year ago

Thank you for the replies indeed with the update it seems to work, i'll keep you up to date if there are other issues i come a cross, again thanks for the reply.