1
Fork 0

Improve parameters in JavaScript

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

View file

@ -97,7 +97,8 @@
{ {
"name": "Function parameters", "name": "Function parameters",
"scope": [ "scope": [
"meta.function.definition variable" "meta.function.definition variable",
"variable.parameter",
], ],
"settings": { "settings": {
"foreground": "#F2E57F", // action 90 "foreground": "#F2E57F", // action 90
@ -107,6 +108,7 @@
"name": "Function definitions", "name": "Function definitions",
"scope": [ "scope": [
"meta.function.definition entity.name.function", "meta.function.definition entity.name.function",
"meta.definition entity.name.function",
], ],
"settings": { "settings": {
"foreground": "#B9AC37", // action 70 "foreground": "#B9AC37", // action 70
@ -193,11 +195,8 @@
"keyword": { "keyword": {
"foreground": "#F58F59", "foreground": "#F58F59",
}, },
"function": { "parameter": {
"foreground": "#6E7D16", "foreground": "#F2E57F"
},
"method": {
"foreground": "#6E7D16",
}, },
"function.declaration":{ "function.declaration":{
"foreground": "#B9AC37", "foreground": "#B9AC37",
@ -207,6 +206,12 @@
"foreground": "#B9AC37", "foreground": "#B9AC37",
"fontStyle": "bold" "fontStyle": "bold"
}, },
"function": {
"foreground": "#6E7D16",
},
"method": {
"foreground": "#6E7D16",
},
"interface": { "interface": {
"foreground":"#308832", "foreground":"#308832",
}, },