mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 16:49:06 +01:00
60 lines
1.1 KiB
JSON
60 lines
1.1 KiB
JSON
{
|
|
"name": "Light+",
|
|
"include": "./light_vs.json",
|
|
"settings": [
|
|
{
|
|
"name": "Types declaration and references",
|
|
"scope": [
|
|
"meta.type.name",
|
|
"meta.return.type",
|
|
"meta.return-type",
|
|
"meta.cast",
|
|
"meta.type.annotation",
|
|
"support.type",
|
|
"entity.name.class",
|
|
"entity.name.type",
|
|
"storage.type.cs",
|
|
"storage.type.java"
|
|
],
|
|
"settings": {
|
|
"foreground": "#267f99"
|
|
}
|
|
},
|
|
{
|
|
"name": "Function declarations",
|
|
"scope": [
|
|
"entity.name.function",
|
|
"entity.name.method"
|
|
],
|
|
"settings": {
|
|
"foreground": "#795E26"
|
|
}
|
|
},
|
|
{
|
|
"name": "Control flow keywords",
|
|
"scope": "keyword.control",
|
|
"settings": {
|
|
"foreground": "#AF00DB"
|
|
}
|
|
},
|
|
{
|
|
"name": "Parameter name",
|
|
"scope": [
|
|
"meta.parameter.type.variable",
|
|
"variable.parameter",
|
|
"variable",
|
|
"variable.name"
|
|
],
|
|
"settings": {
|
|
"foreground": "#001080"
|
|
}
|
|
},
|
|
{
|
|
"name": "C includes must match meta.preprocessor",
|
|
"scope": "keyword.control.import",
|
|
"settings": {
|
|
"foreground": "#0000FF"
|
|
}
|
|
}
|
|
]
|
|
} |