forked from withfig/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirenv.ts
300 lines (292 loc) · 6.76 KB
/
direnv.ts
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
import { filepaths } from "@fig/autocomplete-generators";
const PRIORITY_TOP_THRESHOLD = 76;
const PRIORITY_BOTTOM_THRESHOLD = 49;
/*
* Generators
*/
const envrcFilepathsGenerator = (
suggestOptions?: Partial<Fig.Suggestion>
): Fig.Generator => ({
template: "filepaths",
filterTemplateSuggestions: (paths) => {
const isEnvrc = (fileName: string) => fileName.includes(".envrc");
return paths
.filter((file) => isEnvrc(file.name) || file.name.endsWith("/"))
.map((file) => ({
...file,
priority: isEnvrc(file.name) && PRIORITY_TOP_THRESHOLD,
...suggestOptions,
}));
},
});
const dotenvFilepathsGenerator = filepaths({
matches: /\.env(?!rc)/g,
editFileSuggestions: { priority: PRIORITY_TOP_THRESHOLD },
});
/*
* Reusable suggestions
*/
const shellSuggestions: Partial<Fig.Suggestion>[] = [
"bash",
"zsh",
"fish",
"tcsh",
"elvish",
].map((shell) => ({
name: shell,
icon: "🐚",
}));
/*
* Reusable specs
*/
const helpSpec: Partial<Fig.Subcommand> = {
description: "Help for direnv",
args: {
name: "SHOW_PRIVATE",
description: "Any string",
isOptional: true,
},
};
const versionSpec: Partial<Fig.Subcommand> = {
description:
"Prints the version or checks that direnv is older than VERSION_AT_LEAST",
args: {
name: "VERSION_AT_LEAST",
isOptional: true,
},
};
/*
* Completion spec
*/
const completionSpec: Fig.Spec = {
name: "direnv",
description: "Unclutter your .profile",
subcommands: [
{
name: "allow",
description: "Grants direnv to load the given .envrc",
isDangerous: true,
args: {
name: "PATH_TO_RC",
generators: envrcFilepathsGenerator({ isDangerous: true }),
isOptional: true,
},
},
{
name: "deny",
description: "Revokes the authorization of a given .envrc",
isDangerous: true,
args: {
name: "PATH_TO_RC",
generators: envrcFilepathsGenerator({ isDangerous: true }),
isOptional: true,
},
},
{
name: "edit",
description:
"Opens PATH_TO_RC or the current .envrc into an $EDITOR and allow the file to be loaded afterwards",
args: {
name: "PATH_TO_RC",
generators: envrcFilepathsGenerator(),
isOptional: true,
},
},
{
name: "exec",
description:
"Executes a command after loading the first .envrc found in DIR",
args: [
{
name: "DIR",
template: "folders",
},
{
name: "COMMAND",
isCommand: true,
isDangerous: true,
},
],
},
{
name: "fetchurl",
description: "Fetches a given URL into direnv's CAS",
args: [
{
name: "url",
},
{
name: "integrity-hash",
description:
"Check if the `integrity hash` is equal to the hash value of the file obtained from the `url`",
isOptional: true,
},
],
},
{
name: "help",
...helpSpec,
},
{
name: "hook",
description: "Used to setup the shell hook",
args: {
name: "SHELL",
suggestions: shellSuggestions,
},
},
{
name: "prune",
description: "Removes old allowed files",
isDangerous: true,
},
{
name: "reload",
description: "Triggers an env reload",
isDangerous: true,
},
{
name: "status",
description: "Prints some debug status information",
},
{
name: "stdlib",
description:
"Displays the stdlib available in the .envrc execution context",
},
{
name: "version",
...versionSpec,
},
{
name: "apply_dump",
description:
"Accepts a filename containing `direnv dump` output and generates a series of bash export statements to apply the given env",
priority: PRIORITY_BOTTOM_THRESHOLD,
args: {
name: "FILE",
template: "filepaths",
isDangerous: true,
},
},
{
name: "show_dump",
description: "Show the data inside of a dump for debugging purposes",
priority: PRIORITY_BOTTOM_THRESHOLD,
args: {
name: "DUMP",
template: "filepaths",
},
},
{
name: "dotenv",
description:
"Transforms a .env file to evaluatable `export KEY=PAIR` statements",
priority: PRIORITY_BOTTOM_THRESHOLD,
args: [
{
name: "SHELL",
suggestions: shellSuggestions,
isOptional: true,
},
{
name: "PATH_TO_DOTENV",
generators: dotenvFilepathsGenerator,
},
],
},
{
name: "dump",
description:
"Used to export the inner bash state at the end of execution",
priority: PRIORITY_BOTTOM_THRESHOLD,
args: [
{
name: "SHELL",
suggestions: shellSuggestions,
isOptional: true,
},
{
name: "FILE",
description: "Overwrites by dump data",
template: "filepaths",
isOptional: true,
isDangerous: true,
},
],
},
{
name: "export",
description: "Loads an .envrc and prints the diff in terms of exports",
priority: PRIORITY_BOTTOM_THRESHOLD,
args: {
name: "SHELL",
suggestions: shellSuggestions,
},
},
{
name: "watch",
description: "Adds a path to the list that direnv watches for changes",
priority: PRIORITY_BOTTOM_THRESHOLD,
args: [
{
name: "SHELL",
suggestions: shellSuggestions,
},
{
name: "PATH",
template: "filepaths",
isVariadic: true,
},
],
},
{
name: "watch-dir",
description:
"Recursively adds a directory to the list that direnv watches for changes",
priority: PRIORITY_BOTTOM_THRESHOLD,
args: [
{
name: "SHELL",
suggestions: shellSuggestions,
},
{
name: "DIR",
template: "folders",
},
],
},
{
name: "watch-list",
description:
"Pipe pairs of `mtime path` to stdin to build a list of files to watch",
priority: PRIORITY_BOTTOM_THRESHOLD,
args: {
name: "SHELL",
suggestions: shellSuggestions,
isOptional: true,
},
},
{
name: "current",
description:
"Reports whether direnv's view of a file is current (or stale)",
priority: PRIORITY_BOTTOM_THRESHOLD,
args: {
name: "PATH",
template: "filepaths",
},
},
],
options: [
{
name: "--version",
...versionSpec,
},
{
name: "--help",
...helpSpec,
},
],
};
export default completionSpec;