linux-china / jetbrains-just-plugin

JetBrains Just Command Runner Plugin
https://plugins.jetbrains.com/plugin/18658-just
Apache License 2.0
40 stars 6 forks source link

Recipe substitutions break highlighting for the recipe #40

Open TapGhoul opened 5 days ago

TapGhoul commented 5 days ago

As the title says. Sample code:

#!/usr/bin/env just --justfile

blah:
    ls
    echo "hi"
    ls

blah-bad:
    ls
    echo {{ "hi" }}
    ls

blah-ok-again:
    ls
    echo "hi"
    ls

Resulting highlighting: image

This breaks no matter what is in the recipe - a quoted string is used here, but variables break just the same.