1
Fork 0

Split interface declarations and use

This commit is contained in:
Steffo 2024-12-11 10:21:50 +01:00
parent c33b7fbd9f
commit 4c5fefb274
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -106,7 +106,7 @@
{ {
"name": "Function definitions", "name": "Function definitions",
"scope": [ "scope": [
"meta.function.definition entity.name.function" "meta.function.definition entity.name.function",
], ],
"settings": { "settings": {
"foreground": "#B9AC37", // action 70 "foreground": "#B9AC37", // action 70
@ -123,13 +123,23 @@
} }
}, },
{ {
"name": "Interfaces", "name": "Interface declarations",
"scope": [
],
"settings": {
"foreground": "#308832", // behavior 70
"fontStyle": "bold",
}
},
{
"name": "Interface use",
"scope": [ "scope": [
"entity.name.interface", "entity.name.interface",
"entity.name.type.interface", "entity.name.type.interface",
], ],
"settings": { "settings": {
"foreground": "#A2D399", "foreground": "#308832", // behavior 50
} }
}, },
{ {
@ -186,12 +196,23 @@
"function": { "function": {
"foreground": "#6E7D16", "foreground": "#6E7D16",
}, },
"method": {
"foreground": "#6E7D16",
},
"function.declaration":{ "function.declaration":{
"foreground": "#B9AC37", "foreground": "#B9AC37",
"fontStyle": "bold" "fontStyle": "bold"
}, },
"method.declaration":{
"foreground": "#B9AC37",
"fontStyle": "bold"
},
"interface": { "interface": {
"foreground":"#65BE60", "foreground":"#308832",
},
"interface.declaration": {
"foreground": "#65BE60",
"fontStyle": "bold",
}, },
"type": { "type": {
"foreground":"#87D6BC", "foreground":"#87D6BC",