Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit 25694fb

Browse files
committed
Move RA syntax tree grammar support
1 parent f94b6ab commit 25694fb

File tree

3 files changed

+11
-15
lines changed

3 files changed

+11
-15
lines changed

package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,24 @@
8080
".rs"
8181
],
8282
"configuration": "./language-configuration.json"
83+
},
84+
{
85+
"id": "ra_syntax_tree",
86+
"extensions": [
87+
".rast"
88+
]
8389
}
8490
],
8591
"grammars": [
8692
{
8793
"language": "rust",
8894
"scopeName": "source.rust",
8995
"path": "rust.tmGrammar.json"
96+
},
97+
{
98+
"language": "ra_syntax_tree",
99+
"scopeName": "source.ra_syntax_tree",
100+
"path": "ra_syntax_tree.tmGrammar.json"
90101
}
91102
],
92103
"snippets": [

rust-analyzer/editors/code/package.json

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -632,21 +632,6 @@
632632
]
633633
}
634634
],
635-
"languages": [
636-
{
637-
"id": "ra_syntax_tree",
638-
"extensions": [
639-
".rast"
640-
]
641-
}
642-
],
643-
"grammars": [
644-
{
645-
"language": "ra_syntax_tree",
646-
"scopeName": "source.ra_syntax_tree",
647-
"path": "ra_syntax_tree.tmGrammar.json"
648-
}
649-
],
650635
"problemMatchers": [
651636
{
652637
"name": "rustc",

0 commit comments

Comments
 (0)