-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcyggrep.jloga.json
60 lines (60 loc) · 1.2 KB
/
cyggrep.jloga.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
{
"order": 0,
"icon": "\uD83D\uDC4B 0",
"label": "Grep",
"description": "Cygwin grep",
"command": [
"D:\\Gian\\Cygwin64\\bin\\grep.exe",
"--with-filename",
"--line-number",
"%Case%",
"%Invert%",
"%CountOnly%",
"%Type%",
"%Text%"
],
"matchRegex": "^(?<file>[^:]*):(?<line>\\d*):(?<text>.*)",
"enabled": "true",
"params": {
"Text": {
"type": "STRING",
"description": "Search",
"mandatory": true
},
"Case": {
"type": "COMBO",
"description": "Case",
"mandatory": false,
"values": {
"sensitive": "",
"insensitive": "-i"
}
},
"Type": {
"type": "COMBO",
"description": "Type",
"values": {
"Fixed strings": "--fixed-strings",
"Basic regexp": "--basic-regexp",
"Extended regexp": "--extended-regexp",
"Perl regexp": "--perl-regexp"
}
},
"Invert": {
"type": "CHECKBOX",
"description": "Invert",
"values": {
"false": "",
"true": "-v"
}
},
"CountOnly": {
"type": "CHECKBOX",
"description": "Count only",
"values": {
"false": "",
"true": "-c"
}
}
}
}