Add rules for regex groups to vs dark+ and light+ themes

This commit is contained in:
Matt Bierner
2017-09-12 11:52:12 -07:00
parent b411fb2c2c
commit 3864be5b8e
5 changed files with 76 additions and 30 deletions

View File

@@ -101,6 +101,29 @@
"settings": {
"foreground": "#0451a5"
}
},
{
"scope": [
"punctuation.definition.group.regexp",
"punctuation.definition.group.assertion.regexp",
"punctuation.definition.character-class.regexp",
"keyword.operator.negation.regexp"
],
"settings": {
"foreground": "#ff0000"
}
},
{
"scope": "keyword.operator.quantifier.regexp",
"settings": {
"foreground": "#0000ff"
}
},
{
"scope": "keyword.control.anchor.regexp",
"settings": {
"foreground": "#09885a"
}
}
]
}