fix: add color support for constant placeholders inside strings
Closes #1291
This commit is contained in:
parent
0b346725dc
commit
8fd5192d20
1 changed files with 9 additions and 0 deletions
|
@ -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: [
|
||||||
|
|
Loading…
Reference in a new issue