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",
|
"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":"#308832",
|
||||||
|
},
|
||||||
|
"interface.declaration": {
|
||||||
"foreground": "#65BE60",
|
"foreground": "#65BE60",
|
||||||
|
"fontStyle": "bold",
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
"foreground":"#87D6BC",
|
"foreground":"#87D6BC",
|
||||||
|
|
Loading…
Reference in a new issue