-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Labels
Description
Similar to the overrides option it would be nice to have an option to override individual tokens (or some other way to override arbitrary config).
For example, I have the following snippet in my settings.json to override my json separator token. It would be nice to be able to specify this in index.ts rather than a config in settings.json.
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "punctuation.separator.dictionary.key-value.json",
"settings": {
"foreground": "#f43753",
}
}
]
}Reactions are currently unavailable