forked from withfig/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrew.js
232 lines (231 loc) · 8.48 KB
/
brew.js
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
var generators = {
servicesgenerators: {
script: "brew services list | sed -e 's/ .*//' | tail -n +2",
postProcess: function (out) {
return out
.split("\n")
.filter(function (line) { return !line.includes("unbound"); })
.map(function (line) { return ({
name: line,
type: "option",
}); });
},
},
};
var completionSpec = {
name: "brew",
description: "Package manager for macOS",
subcommands: [
{ name: "list", description: "List all installed formulae" },
{
name: "leaves",
description: "List installed formulae that are not dependencies of another installed formula",
},
{
name: "doctor",
description: "Check your system for potential problems",
},
{
name: "info",
description: "Display brief statistics for your Homebrew installation",
},
{
name: "update",
description: "Fetch the newest version of Homebrew and all formulae",
},
{ name: "upgrade", description: "Upgrade outdated casks and outdated" },
{
name: "search",
description: "Perform a substring search of cask tokens and formula names",
},
{
name: "config",
description: "Show Homebrew and system configuration info",
},
{
name: "install",
description: "Install <formula>",
insertValue: "install ",
args: {
variadic: true,
name: "formula",
description: "Formula or cask to install",
generators: {
script: "HBPATH=$(brew --repository); ls -1 $HBPATH/Library/Taps/homebrew/homebrew-core/Formula $HBPATH/Library/Taps/homebrew/homebrew-cask/Casks",
postProcess: function (out) {
return out.split("\n").map(function (formula) {
return {
name: formula.replace(".rb", ""),
description: "formula",
icon: "🍺",
priority: (formula[0] >= "0" && formula[0] <= "9") || formula[0] == "/"
? 0
: 100,
};
});
},
},
},
},
{
name: "uninstall",
description: "Uninstall <formula>",
args: {
variadic: true,
name: "formula",
generators: {
script: "brew list -1 --formulae",
postProcess: function (out) {
return out.split("\n").map(function (formula) {
return {
name: formula,
icon: "🍺",
description: "Installed formula",
};
});
},
},
},
},
{
name: "cask",
insertValue: "cask ",
description: "Homebrew Cask provides a friendly CLI workflow for the administration of macOS applications distributed as binaries.",
subcommands: [
{
name: "install",
insertValue: "install ",
description: "Installs the given cask",
args: {
name: "cask",
description: "Cask to install",
},
},
{
name: "uninstall",
insertValue: "uninstall ",
description: "Uninstalls the given cask",
args: {
variadic: true,
generators: {
script: "brew list -1 --cask",
postProcess: function (out) {
return out.split("\n").map(function (formula) {
return {
name: formula,
icon: "🍺",
description: "Installed formula",
};
});
},
},
},
},
],
},
{
name: "services",
description: "Manage background services with macOS' launchctl(1) daemon manager.",
options: [
{
name: ["-d", "--debug"],
description: "Display any debugging information.",
},
{
name: ["-q", "--quiet"],
description: "Suppress any warnings.",
},
{
name: ["-v", "--verbose"],
description: "Make some output more verbose.",
},
{
name: ["-h", "--help"],
description: "Get help with services command",
},
],
subcommands: [
{
name: "cleanup",
insertValue: "cleanup",
description: "Remove all unused services.",
},
{
name: "list",
insertValue: "list",
description: "List all services.",
},
{
name: "run",
insertValue: "run ",
description: "Run the service formula without registering to launch at login (or boot).",
options: [
{
name: "--all",
insertValue: "--all",
description: "Start all services",
},
],
args: {
variadic: true,
generators: generators.servicesGenerator,
},
},
{
name: "start",
insertValue: "start ",
description: "Start the service formula immediately and register it to launch at login",
options: [
{
name: "--all",
insertValue: "--all",
description: "Start all services",
},
],
args: {
variadic: true,
generators: generators.servicesGenerator,
},
},
{
name: "stop",
insertValue: "stop ",
description: "Stop the service formula immediately and unregister it from launching at",
options: [
{
name: "--all",
insertValue: "--all",
description: "Start all services",
},
],
args: {
variadic: true,
generators: generators.servicesGenerator,
},
},
{
name: "restart",
insertValue: "restart ",
description: "Stop (if necessary) and start the service formula immediately and register it to launch at login (or boot).",
options: [
{
name: "--all",
insertValue: "--all",
description: "Start all services",
},
],
args: {
variadic: true,
generators: generators.servicesGenerator,
},
},
],
},
],
options: [
{
name: ["--version"],
description: "The current Homebrew version",
},
],
};