Dec-11-2022, 04:10 PM
Hey,
I want to customize the VS Code's settings.json, that matplotlib-functions will highlighted in the same color as built-in functions.
I wrote this already, but I don't know, what's the scope's name (instead of "meta.function"), I have to customize:
I want to customize the VS Code's settings.json, that matplotlib-functions will highlighted in the same color as built-in functions.
I wrote this already, but I don't know, what's the scope's name (instead of "meta.function"), I have to customize:
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "meta.function",
"settings": {
"foreground": "#FF0000",
"fontStyle": "bold"
}
}
]
}
}
