-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathformspec.json
30 lines (30 loc) · 945 Bytes
/
formspec.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"scopeName": "source.formspec",
"injectionSelector": "string",
"patterns": [
{
"match": "([a-z0-9_\\-]+?)(\\[[^'\"\\[\\]]*\\]?)",
"captures": {
"1": {
"name": "entity.name.function.lua"
},
"2": {
"patterns": [
{
"match": "[,;\\[\\]\\{\\}\\(\\)]",
"name": "punctuation.separator.lua"
},
{
"match": "((0x|#)[0-9A-F]+)|(\\d\\.\\d)|\\d",
"name": "constant.numeric.lua"
},
{
"match": "true|false",
"name": "constant.language.lua"
}
]
}
}
}
]
}