From 8d85ec704679d0e813e8c895b959f27242f06bbd Mon Sep 17 00:00:00 2001 From: Arthur <110528300+c0rydoras@users.noreply.github.com> Date: Thu, 11 Apr 2024 17:59:00 +0200 Subject: [PATCH] fix(languages/helm): recognize _*.tpl as helm (#10344) --- languages.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages.toml b/languages.toml index d73286f8a1f35..fe94c597eb84c 100644 --- a/languages.toml +++ b/languages.toml @@ -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"