Syntax highlighting for QSP language in Visual Studio Code
slonon 1f16bf3549 Adds missing qsp vars | 4 år sedan | |
---|---|---|
qsrc | 4 år sedan | |
README.md | 5 år sedan |
Sadly not feature complete:
Usage:
Customize formatting:
Modify settings.json (location: %appdata%\Code\User\) (example content):
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "source.qsp comment",
"settings": { "foreground": "#bdbdbd" }
},
{
"scope": "source.qsp variable.other.user",
"settings": { "foreground": "#058bad" }
},
{
"scope": "source.qsp keyword.conditional",
"settings": {"fontStyle": "bold", "foreground": "#4c4cff" }
},
{
"scope": "source.qsp preprocessor",
"settings": { "foreground": "#268BD2" }
},
{
"scope": "source.qsp error",
"settings": { "foreground": "#d40707" }
}
]
}
}