Split interface declarations and use
This commit is contained in:
parent
c33b7fbd9f
commit
4c5fefb274
1 changed files with 25 additions and 4 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue