Tweak the textmate fallback scopes to be consistent with builtin TextMate grammar and other languages

This commit is contained in:
George Fraser 2020-05-09 10:23:32 -07:00
parent bfb40a698d
commit da0c8d96d4

View File

@ -596,28 +596,28 @@
"support.type.primitive" "support.type.primitive"
], ],
"lifetime": [ "lifetime": [
"entity.name.lifetime.rust" "entity.name.type.lifetime"
], ],
"typeAlias": [ "typeAlias": [
"entity.name.typeAlias" "entity.name.type.typeAlias"
], ],
"union": [ "union": [
"entity.name.union" "entity.name.type.union"
], ],
"struct": [ "struct": [
"entity.name.type.struct" "entity.name.type.struct"
], ],
"keyword.unsafe": [
"keyword.other.unsafe"
],
"keyword": [ "keyword": [
"keyword" "keyword.other"
], ],
"keyword.controlFlow": [ "keyword.controlFlow": [
"keyword.control" "keyword.control"
], ],
"variable.constant": [ "variable.constant": [
"entity.name.constant" "variable.other.constant"
],
"formatSpecifier": [
"punctuation.section.embedded"
] ]
} }
} }