aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Fraser <[email protected]>2020-05-09 18:23:32 +0100
committerGeorge Fraser <[email protected]>2020-05-10 21:04:55 +0100
commitda0c8d96d4d612d63058f0d4eba0e6f4348fa2a3 (patch)
tree275f948a06bca9e2c58ca5e23d84d5703598433e
parentbfb40a698dab10adcd1284ce4c7a2a10f36ba4e7 (diff)
Tweak the textmate fallback scopes to be consistent with builtin TextMate grammar and other languages
-rw-r--r--editors/code/package.json16
1 files changed, 8 insertions, 8 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index c6fc13519..a86d0ad0d 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -596,28 +596,28 @@
596 "support.type.primitive" 596 "support.type.primitive"
597 ], 597 ],
598 "lifetime": [ 598 "lifetime": [
599 "entity.name.lifetime.rust" 599 "entity.name.type.lifetime"
600 ], 600 ],
601 "typeAlias": [ 601 "typeAlias": [
602 "entity.name.typeAlias" 602 "entity.name.type.typeAlias"
603 ], 603 ],
604 "union": [ 604 "union": [
605 "entity.name.union" 605 "entity.name.type.union"
606 ], 606 ],
607 "struct": [ 607 "struct": [
608 "entity.name.type.struct" 608 "entity.name.type.struct"
609 ], 609 ],
610 "keyword.unsafe": [
611 "keyword.other.unsafe"
612 ],
613 "keyword": [ 610 "keyword": [
614 "keyword" 611 "keyword.other"
615 ], 612 ],
616 "keyword.controlFlow": [ 613 "keyword.controlFlow": [
617 "keyword.control" 614 "keyword.control"
618 ], 615 ],
619 "variable.constant": [ 616 "variable.constant": [
620 "entity.name.constant" 617 "variable.other.constant"
618 ],
619 "formatSpecifier": [
620 "punctuation.section.embedded"
621 ] 621 ]
622 } 622 }
623 } 623 }