vscode-saltstack
vscode-saltstack copied to clipboard
some JINJA wrongly highlighted
Thanks for the great extension! I noticed a couple instances where the JINJA highlighting is wrong:
- Commented JINJA after YAML value is not properly highlighted as comments
{% set Stuff = "/tmp/baz.json" %} example: file.managed: - name: /tmp/foo.json {# {{ Stuff }} #}
- JINJA text highlighting for this case should NOT be commented, as JINJA will render and replace the YAML '#'
# {% set Stuff = "/tmp/baz.json" %} example: file.managed: - name: {{ Stuff }}