Adopt new vscode textmate

This commit is contained in:
Alex Dima
2017-01-03 15:36:08 +02:00
parent 9cebde963a
commit 8998f7a53d
9 changed files with 299 additions and 72 deletions

View File

@@ -19,9 +19,28 @@
"support.class",
"support.type",
"entity.name.type",
"entity.name.class",
"storage.type.cs",
"storage.type.generic.cs",
"storage.type.modifier.cs",
"storage.type.variable.cs",
"storage.type.annotation.java",
"storage.type.generic.java",
"storage.type.java",
"entity.other.inherited-class"
"storage.type.object.array.java",
"storage.type.primitive.array.java",
"storage.type.primitive.java",
"storage.type.token.java",
"storage.type.groovy",
"storage.type.annotation.groovy",
"storage.type.parameters.groovy",
"storage.type.generic.groovy",
"storage.type.object.array.groovy",
"storage.type.primitive.array.groovy",
"storage.type.primitive.groovy"
],
"settings": {
"foreground": "#4EC9B0"
@@ -51,9 +70,8 @@
{
"name": "Variable and parameter name",
"scope": [
"variable.parameter",
"variable",
"variable.name",
"meta.definition.variable.name",
"support.variable"
],
"settings": {
@@ -61,8 +79,11 @@
}
},
{
"name": "Object keys, TS gammar specific",
"scope": "object-literal.member.key",
"name": "Object keys, TS grammar specific",
"scope": [
"meta.object-literal.key",
"meta.object-literal.key entity.name.function"
],
"settings": {
"foreground": "#9CDCFE"
}
@@ -70,21 +91,19 @@
{
"name": "CSS property value",
"scope": [
"support.property-value",
"constant.rgb-value",
"support.property-value.scss",
"constant.rgb-value.scss"
"constant.other.color.rgb-value.css",
"constant.other.rgb-value.css",
"meta.property-value.css support.function",
"meta.property-value.css support",
"constant.numeric.color.rgb-value.scss",
"constant.rgb-value.scss",
"meta.property-value.scss support.function",
"meta.property-value.scss support"
],
"settings": {
"foreground": "#CE9178"
}
},
{
"name": "JSX Tag names, workaround for flattening match with function",
"scope": "entity.name.function.tag",
"settings": {
"foreground": "#569cd6"
}
}
]
}