You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I share the exact same use case. I have to admit that it is kind of a rare use to run jinja in a yaml file...
I think the main reason it does not work is because this YAML validation extension is registered to handle one language namely yaml. But jinja-yaml is considered as another language.
Perhaps just need to add jinja-yaml to this line here.
For example:
const clientOptions: LanguageClientOptions = {
// Register the server for on disk and newly created YAML documents
documentSelector: [{ language: 'yaml' }, { language: 'dockercompose' }, { language: 'jinja-yaml' }, { pattern: '*.y(a)ml' }],
synchronize: {
Add jinja-yml support for YAML json schemas.
Autocomplete and JSON schema works correctly for YAML file association but not for Jinja-yml
Describe the solution you would like
When using this JSON schema with my YML files,
it is correctly integrated
When trying to do the same with
jinja-yaml
, it isn't available.In fact I think it kind of crashes the extension. See this issue.
The text was updated successfully, but these errors were encountered: