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",
"scope": [
"meta.function.definition entity.name.function"
"meta.function.definition entity.name.function",
],
"settings": {
"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": [
"entity.name.interface",
"entity.name.type.interface",
],
"settings": {
"foreground": "#A2D399",
"foreground": "#308832", // behavior 50
}
},
{
@ -186,12 +196,23 @@
"function": {
"foreground": "#6E7D16",
},
"method": {
"foreground": "#6E7D16",
},
"function.declaration":{
"foreground": "#B9AC37",
"fontStyle": "bold"
},
"method.declaration":{
"foreground": "#B9AC37",
"fontStyle": "bold"
},
"interface": {
"foreground":"#65BE60",
"foreground":"#308832",
},
"interface.declaration": {
"foreground": "#65BE60",
"fontStyle": "bold",
},
"type": {
"foreground":"#87D6BC",