Syntax highlighting for QSP language in Visual Studio Code
slonon 477a6000dd fixes/improves single line parsing | 4 年之前 | |
---|---|---|
qsrc | 4 年之前 | |
README.md | 4 年之前 |
No known bugs:
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" }
}
]
}
}