Split enum uses, members and declarations
This commit is contained in:
parent
799a1578bc
commit
be9091c60c
1 changed files with 27 additions and 8 deletions
|
@ -124,10 +124,8 @@
|
||||||
{
|
{
|
||||||
"name": "Function calls",
|
"name": "Function calls",
|
||||||
"scope": [
|
"scope": [
|
||||||
"meta.function.call entity.name.function",
|
"entity.name.function",
|
||||||
"meta.function-call entity.name.function",
|
"string entity.name.function",
|
||||||
"string meta.function-call entity.name.function",
|
|
||||||
"string meta.function.call entity.name.function",
|
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#6E7D16", // action 50
|
"foreground": "#6E7D16", // action 50
|
||||||
|
@ -137,7 +135,7 @@
|
||||||
{
|
{
|
||||||
"name": "Interface declarations",
|
"name": "Interface declarations",
|
||||||
"scope": [
|
"scope": [
|
||||||
|
"meta.interface entity.name.type.interface"
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#308832", // behavior 70
|
"foreground": "#308832", // behavior 70
|
||||||
|
@ -179,6 +177,7 @@
|
||||||
{
|
{
|
||||||
"name": "Type use",
|
"name": "Type use",
|
||||||
"scope": [
|
"scope": [
|
||||||
|
"entity",
|
||||||
"entity.name.type",
|
"entity.name.type",
|
||||||
"support.type.primitive",
|
"support.type.primitive",
|
||||||
"meta.type.declaration meta.field.declaration entity.name.type", // over-over-ride type declaration for the contents of TypeScript types
|
"meta.type.declaration meta.field.declaration entity.name.type", // over-over-ride type declaration for the contents of TypeScript types
|
||||||
|
@ -251,16 +250,36 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Enums",
|
"name": "Enum use",
|
||||||
"scope": [
|
"scope": [
|
||||||
"entity.name.enum",
|
"entity.name.enum",
|
||||||
"entity.name.type.enum",
|
"entity.name.type.enum",
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#EEB4EA",
|
"foreground": "#A45CA5",
|
||||||
"fontStyle": "",
|
"fontStyle": "",
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Enum member",
|
||||||
|
"scope": [
|
||||||
|
"variable.other.enummember"
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#A45CA5",
|
||||||
|
"fontStyle": "italic",
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Enum declaration",
|
||||||
|
"scope": [
|
||||||
|
"meta.enum.declaration entity.name.type.enum",
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#DE90DD",
|
||||||
|
"fontStyle": "bold",
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"semanticHighlighting": true,
|
"semanticHighlighting": false,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue