Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.20.0
Comment thread
lqhuang marked this conversation as resolved.
Outdated
- Add: Support `ansible` and `ansible-jinja` languages [#1179](https://github.com/redhat-developer/vscode-yaml/pull/1179)

### 1.19.1
- Fix: Revert change that modified user settings on each launch [#1157](https://github.com/redhat-developer/vscode-yaml/issues/1157)
- Fix: QuickFix to replace value with integer/number appears blank and doesn't work [#1116](https://github.com/redhat-developer/yaml-language-server/issues/1116)
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@
"onLanguage:dockercompose",
"onLanguage:github-actions-workflow",
"onLanguage:yaml-textmate",
"onLanguage:yaml-tmlanguage"
"onLanguage:yaml-tmlanguage",
"onLanguage:ansible",
"onLanguage:ansible-jinja"
],
"keywords": [
"kubernetes",
Expand Down
4 changes: 3 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ export function startClient(
{ language: 'github-actions-workflow' },
{ language: 'yaml-textmate' },
{ language: 'yaml-tmlanguage' },
{ pattern: '*.y(a)ml' },
{ language: 'ansible' },
{ language: 'ansible-jinja' },
{ pattern: '**/*.{yaml,yml}' },
],
synchronize: {
// Notify the server about file changes to YAML and JSON files contained in the workspace
Expand Down
Loading