Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,19 @@
},
"activationEvents": [
"onLanguage:yaml",
"onLanguage:dockercompose",
"onLanguage:github-actions-workflow",
"onLanguage:yaml-textmate",
"onLanguage:yaml-tmlanguage",
"onLanguage:ansible",
"onLanguage:ansible-jinja"
"onLanguage:ansible-jinja",
"onLanguage:azure-pipelines",
"onLanguage:dockercompose",
"onLanguage:github-actions-workflow",
"onLanguage:home-assistant",
"onLanguage:home-assistant-jinja",
"onLanguage:jekyll",
"onLanguage:manifest-yaml",
"onLanguage:sls",
"onLanguage:spring-boot-properties-yaml"
],
"keywords": [
"kubernetes",
Expand Down
12 changes: 9 additions & 3 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,19 @@ export function startClient(
// Register the server for on disk and newly created YAML documents
documentSelector: [
{ language: 'yaml' },
{ language: 'dockercompose' },
{ language: 'github-actions-workflow' },
{ language: 'yaml-textmate' },
{ language: 'yaml-tmlanguage' },
{ language: 'ansible' },
{ language: 'ansible-jinja' },
Comment thread
shin19991207 marked this conversation as resolved.
Outdated
{ pattern: '**/*.{yaml,yml}' },
{ language: 'azure-pipelines' },
{ language: 'dockercompose' },
{ language: 'github-actions-workflow' },
{ language: 'home-assistant' },
{ language: 'home-assistant-jinja' },
Comment thread
shin19991207 marked this conversation as resolved.
Outdated
{ language: 'jekyll' },
Comment thread
shin19991207 marked this conversation as resolved.
Outdated
{ language: 'manifest-yaml' },
{ language: 'sls' },
Comment thread
shin19991207 marked this conversation as resolved.
Outdated
{ language: 'spring-boot-properties-yaml' },
],
synchronize: {
// Notify the server about file changes to YAML and JSON files contained in the workspace
Expand Down
Loading