tim-koehler / Helm-Intellisense

Extension for Visual Studio Code - Intellisense in helm-templates from the values.yaml

Home Page:https://marketplace.visualstudio.com/items?itemName=Tim-Koehler.helm-intellisense&ssr=false#overview

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

horacimacias opened this issue · comments

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?

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"
    },

thanks!