1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-04-30 09:15:08 +02:00

fix(languages/helm): recognize _*.tpl as helm (#10344)

This commit is contained in:
Arthur 2024-04-11 17:59:00 +02:00 committed by GitHub
parent 009a5498ca
commit c9ae694aff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3418,7 +3418,7 @@ scope = "source.helm"
roots = ["Chart.yaml"]
comment-token = "#"
language-servers = ["helm_ls"]
file-types = [ { glob = "templates/*.yaml" }, { glob = "templates/_helpers.tpl"}, { glob = "templates/NOTES.txt" } ]
file-types = [ { glob = "templates/*.yaml" }, { glob = "templates/_*.tpl"}, { glob = "templates/NOTES.txt" } ]
[[language]]
name = "glimmer"