fix: add color support for constant placeholders inside strings

Closes #1291
This commit is contained in:
Mattia Astorino 2023-12-10 11:01:52 +01:00
parent 0b346725dc
commit 8fd5192d20

View file

@ -48,6 +48,15 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
* Override all syntax tokens * Override all syntax tokens
*/ */
customTokens: [ customTokens: [
{
name: 'Constant Placeholder',
scope: [
'constant.other.placeholder'
],
settings: {
foreground: theme.scheme.base.red
}
},
{ {
name: 'Markup Deleted', name: 'Markup Deleted',
scope: [ scope: [