Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.19.2
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
2 changes: 2 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ export function startClient(
{ language: 'github-actions-workflow' },
{ language: 'yaml-textmate' },
{ language: 'yaml-tmlanguage' },
{ language: 'ansible' },
{ language: 'ansible-jinja' },
{ pattern: '*.y(a)ml' },
Comment thread
lqhuang marked this conversation as resolved.
Outdated
],
synchronize: {
Expand Down
Loading