-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcli-help.tmLanguage.json
More file actions
69 lines (69 loc) · 1.4 KB
/
cli-help.tmLanguage.json
File metadata and controls
69 lines (69 loc) · 1.4 KB
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
{
"displayName": "CLI Help",
"scopeName": "source.cli-help",
"name": "cli-help",
"patterns": [
{
"name": "keyword.cli-help",
"match": "^[A-Z][A-Z\\s]+:$"
},
{
"name": "string.cli-help",
"match": "\\s-[a-zA-Z0-9@?]"
},
{
"name": "string.cli-help",
"match": "\\s--[a-zA-Z0-9\\-]+"
},
{
"comment": "Optional arguments",
"name": "comment.cli-help",
"begin": "\\[",
"end": "\\]"
},
{
"name": "string.cli-help",
"match": "^\\s{4}\\b[a-z][a-z\\-]+\\b"
},
{
"name": "entity.name.type",
"begin": "<",
"end": ">"
},
{
"name": "string.quoted.double.cli-help",
"begin": "\"",
"end": "\"",
"beginCaptures": {
"0": {
"name": "punctuation.definition.string.begin.cli-help"
}
},
"endCaptures": {
"0": {
"name": "punctuation.definition.string.end.cli-help"
}
}
},
{
"name": "string.quoted.single.cli-help",
"begin": "`",
"end": "`",
"beginCaptures": {
"0": {
"name": "punctuation.definition.string.begin.cli-help"
}
},
"endCaptures": {
"0": {
"name": "punctuation.definition.string.end.cli-help"
}
}
},
{
"name": "comment.cli-help",
"match": "#.*$"
}
],
"repository": {}
}