aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
authorveetaha <[email protected]>2020-04-22 00:00:58 +0100
committerveetaha <[email protected]>2020-04-22 00:00:58 +0100
commit61a931425d0b16b45e73d6932d4b476cc00c1934 (patch)
treed880dcfa07fbdc478eb0bb98cedecfed2d56fb48 /editors/code
parentec645f2d75d2939a2f64959019dd916750f1ec00 (diff)
Fix .rast tmGrammar to account for numbers in identifiers
Diffstat (limited to 'editors/code')
-rw-r--r--editors/code/ra_syntax_tree.tmGrammar.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/ra_syntax_tree.tmGrammar.json b/editors/code/ra_syntax_tree.tmGrammar.json
index 0d72a3e36..431d414f6 100644
--- a/editors/code/ra_syntax_tree.tmGrammar.json
+++ b/editors/code/ra_syntax_tree.tmGrammar.json
@@ -9,7 +9,7 @@
9 ], 9 ],
10 "repository": { 10 "repository": {
11 "node_type": { 11 "node_type": {
12 "match": "^\\s*([A-Z_]+?)@", 12 "match": "^\\s*([A-Z_][A-Z_0-9]*?)@",
13 "captures": { 13 "captures": {
14 "1": { 14 "1": {
15 "name": "entity.name.class" 15 "name": "entity.name.class"