We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5170dc7 commit c850fb1Copy full SHA for c850fb1
editors/code/syntaxes/Luau.tmLanguage.json
@@ -60,6 +60,9 @@
60
},
61
{
62
"include": "#type_annotation"
63
+ },
64
+ {
65
+ "include": "#attribute"
66
}
67
],
68
"repository": {
@@ -150,6 +153,9 @@
150
153
151
154
"include": "#comment"
152
155
156
157
158
159
160
"begin": "(:)",
161
"beginCaptures": {
@@ -749,6 +755,22 @@
749
755
]
750
756
751
757
758
759
+ "attribute": {
760
+ "patterns": [
761
762
+ "name": "meta.attribute.luau",
763
+ "match": "(@)([a-zA-Z_][a-zA-Z0-9_]*)",
764
+ "captures": {
765
+ "1": {
766
+ "name": "keyword.operator.attribute.luau"
767
768
+ "2": {
769
+ "name": "storage.type.attribute.luau"
770
+ }
771
772
773
+ ]
752
774
753
775
754
776
0 commit comments