This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
qmldir.tmLanguage.json
83 lines (83 loc) · 1.57 KB
/
qmldir.tmLanguage.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
"name": "QML Directory",
"scopeName": "source.qmldir",
"patterns": [
{
"include": "#comment"
},
{
"include": "#keywords"
},
{
"include": "#version"
},
{
"include": "#names"
}
],
"repository": {
"comment": {
"patterns": [
{
"name": "comment.line.number-sign.qmldir",
"begin": "#",
"end": "$"
}
]
},
"keywords": {
"patterns": [
{
"name": "keyword.other.qmldir",
"match": "\\b(module|singleton|internal|plugin|classname|typeinfo|depends|designersupported)\\b"
}
]
},
"version": {
"patterns": [
{
"name": "constant.numeric.qml",
"match": "\\b\\d+\\.\\d+\\b"
}
]
},
"names": {
"patterns": [
{
"include": "#file-name"
},
{
"include": "#module-name"
},
{
"include": "#identifier"
}
]
},
"file-name": {
"patterns": [
{
"name": "string.unquoted.qmldir",
"match": "\\b\\w+\\.(qmltypes|qml|js)\\b"
}
]
},
"module-name": {
"patterns": [
{
"name": "entity.name.type.qmldir",
"match": "\\b[A-Z]\\w*\\b"
}
]
},
"identifier": {
"patterns": [
{
"name": "variable.parameter.qmldir",
"match": "\\b\\w+\\b"
}
]
}
}
}