[themes] add ts cast & new scope, remove entity.name.method

This commit is contained in:
Martin Aeschlimann
2016-10-14 12:15:42 +02:00
parent 0069a59414
commit 72c6f6625e
8 changed files with 102 additions and 84 deletions

View File

@@ -5,7 +5,6 @@
{
"name": "Types declaration and references",
"scope": [
"meta.return.type",
"meta.return-type",
"support.type",
"entity.name.class",
@@ -17,11 +16,21 @@
"foreground": "#267f99"
}
},
{
"name": "Types declaration and references, TS grammar specific",
"scope": [
"meta.return.type",
"meta.type.cast.expr",
"meta.type.new.expr"
],
"settings": {
"foreground": "#267f99"
}
},
{
"name": "Function declarations",
"scope": [
"entity.name.function",
"entity.name.method"
"entity.name.function"
],
"settings": {
"foreground": "#795E26"