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

Limit suggestions to go template actions

marcfrederick opened this issue · comments

Currently completions will be suggested outside of go template actions. They should be limited to the inside of the curly brackets.

Fixed with v0.1.2

This is still kind of broken as it simply looks for opening curly braces before and closing ones after the current cursor position. Something like the following still leads to completions:

{{  }} .Values.… {{  }}

This is still kind of broken as it simply looks for opening curly braces before and closing ones after the current cursor position. Something like the following still leads to completions:

{{  }} .Values.… {{  }}

Fixed suggested in #7