tim-koehler / Helm-Intellisense

Extension for Visual Studio Code - Intellisense in helm-templates from the values.yaml
https://marketplace.visualstudio.com/items?itemName=Tim-Koehler.helm-intellisense&ssr=false#overview
MIT License
1.6k stars 23 forks source link

any way to get intellisense on template files (not yaml)? #65

Closed horacimacias closed 11 months ago

horacimacias commented 12 months ago

this extension looks great, but I'm trying to get intellisense and highlighting when writing template files, in addition to yaml files. Is there any way to get intellisense and/or syntax highlighting there?

krokofant commented 11 months ago

I have the kubernetes extension installed along this and I'm using the file association to make it work

You can add this to your settings:

    "files.associations": {
      "**/templates/*.tpl": "helm"
    },
horacimacias commented 11 months ago

thanks!