File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1616 " Other"
1717 ],
1818 "activationEvents" : [
19- " onLanguage:helm"
19+ " onLanguage:helm" ,
20+ " onLanguage:yaml"
2021 ],
2122 "main" : " ./dist/extension.js" ,
2223 "contributes" : {
Original file line number Diff line number Diff line change @@ -42,7 +42,13 @@ export async function activate(context: vscode.ExtensionContext) {
4242 } ;
4343
4444 const clientOptions : LanguageClientOptions = {
45- documentSelector : [ { scheme : "file" , language : "helm" } ] ,
45+ documentSelector : [
46+ { language : "helm" } ,
47+ {
48+ language : "yaml" ,
49+ pattern : "**/values*.yaml" ,
50+ } ,
51+ ] ,
4652 synchronize : { } ,
4753 } ;
4854
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import * as crypto from "crypto";
77import * as os from "os" ;
88import { IncomingMessage } from "http" ;
99
10- const HELM_LS_VERSION = "v0.2.1 " ;
10+ const HELM_LS_VERSION = "v0.3.0 " ;
1111const HELM_LS_REPO = "mrjosh/helm-ls" ;
1212
1313interface PlatformInfo {
You can’t perform that action at this time.
0 commit comments