This repository has been archived by the owner on Oct 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.34 KB
/
package.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
84
85
86
87
88
89
90
{
"name": "atom-codesearch",
"main": "./lib/atom-codesearch",
"version": "1.4.0",
"description": "Super-fast search for code using different search engines: CodeSearch, ripgrep, ag, pt",
"keywords": [],
"activationCommands": {
"atom-workspace": [
"code-search:toggle",
"code-search:reindex-project"
]
},
"repository": "https://github.com/antelle/atom-codesearch",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"configSchema": {
"engine": {
"type": "string",
"default": "rg",
"title": "Search engine",
"description": "Which search engine to use (it must be installed in your system)",
"enum": [
{
"value": "csearch",
"description": "Google CodeSearch"
},
{
"value": "rg",
"description": "ripgrep (rg)"
},
{
"value": "ag",
"description": "The Silver Searcher"
},
{
"value": "pt",
"description": "The Platinum Searcher"
}
],
"order": 1
},
"path": {
"type": "string",
"default": "",
"title": "Executable path",
"description": "Path to search engine executable, default: $PATH",
"order": 5
},
"opts": {
"type": "string",
"default": "",
"title": "Additional options",
"description": "Additional options passed to search engine",
"order": 10
},
"optsIndex": {
"type": "string",
"default": "",
"title": "Indexer options for CodeSearch",
"description": "Google CodeSearch: additional options passed to cindex",
"order": 11
},
"useGlobalCodeSearchIndex": {
"type": "boolean",
"default": false,
"title": "CodeSearch index location",
"description": "Google CodeSearch: which .csearchindex file to use",
"order": 20,
"enum": [
{
"value": false,
"description": "Create per-project index files for faster indexing"
},
{
"value": true,
"description": "Use global index file from home directory: ~/.csearchindex"
}
]
},
"debugMode": {
"type": "boolean",
"default": false,
"title": "Debug mode",
"description": "Print diagnostic messages to DevTools console",
"order": 100
}
}
}