is it possible to display variables inside a string with a different color?
- Code: Select all
<dict>
<key>name</key>
<string>string</string>
<key>match</key>
<string>["'].*?["']</string>
</dict>
<dict>
<key>name</key>
<string>variable.parameter</string>
<key>match</key>
<string>\$[A-Za-z_][A-Za-z0-9_]*</string>
</dict>
Atm it looks like:
$test = "$drive:\$folder";
And I'd want it to look like:
$test = "$drive:\$folder";
=> Variables in strings should have a precedence over the string color itself.
Is that possible?