-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample_config.json
77 lines (77 loc) · 2.37 KB
/
example_config.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
{
"commands" : [
{
"name" : "Google",
"options" : {
"shouldPercentEncodeFullUrl" : true,
"shouldEscapeDoubleQuotes" : false,
"shouldEscapeForRegex" : false
},
"urlTemplate" : "https:\/\/google.com\/search?q=%s"
},
{
"name" : "StackOverflow",
"options" : {
"shouldPercentEncodeFullUrl" : true,
"shouldEscapeDoubleQuotes" : false,
"shouldEscapeForRegex" : false
},
"urlTemplate" : "https:\/\/stackoverflow.com\/search?q=%s"
},
{
"name" : "Apple Documentation",
"options" : {
"shouldPercentEncodeFullUrl" : true,
"shouldEscapeDoubleQuotes" : false,
"shouldEscapeForRegex" : false
},
"urlTemplate" : "https:\/\/developer.apple.com\/search?q=%s"
},
{
"name" : "Github",
"options" : {
"shouldPercentEncodeFullUrl" : true,
"shouldEscapeDoubleQuotes" : false,
"shouldEscapeForRegex" : false
},
"urlTemplate" : "https:\/\/github.com\/search?q=%s"
},
{
"name" : "RxSwift",
"options" : {
"shouldPercentEncodeFullUrl" : true,
"shouldEscapeDoubleQuotes" : false,
"shouldEscapeForRegex" : false
},
"urlTemplate" : "https:\/\/github.com\/ReactiveX\/RxSwift\/search?q=%s"
},
{
"name" : "Sourcegraph literal",
"options" : {
"shouldPercentEncodeFullUrl" : true,
"shouldEscapeDoubleQuotes" : true,
"shouldEscapeForRegex" : false
},
"urlTemplate" : "https:\/\/sourcegraph.com\/search?q=repo:^github\\.com\/ReactiveX\/RxSwift$+content:\"%s\"&patternType=literal"
},
{
"name" : "Sourcegraph type",
"options" : {
"shouldPercentEncodeFullUrl" : true,
"shouldEscapeDoubleQuotes" : false,
"shouldEscapeForRegex" : true
},
"urlTemplate" : "https:\/\/sourcegraph.com\/search?q=repo:%5Egithub%5C.com\/ReactiveX\/RxSwift%24+\/%28typealias%7Cstruct%7Cclass%7Cprotocol%7Cenum%29+%s\/&patternType=regexp"
},
{
"name" : "Sourcegraph file",
"options" : {
"shouldPercentEncodeFullUrl" : true,
"shouldEscapeDoubleQuotes" : false,
"shouldEscapeForRegex" : true
},
"urlTemplate" : "https:\/\/sourcegraph.com\/search?q=repo:%5Egithub%5C.com\/ReactiveX\/RxSwift%24+file:%s&patternType=literal"
}
],
"version" : 1
}