forked from withfig/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfig.ts
236 lines (219 loc) · 6.28 KB
/
fig.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
const SETTINGS_PATH = "~/.fig/tools/all-settings.json";
interface Settings {
settingName: string;
description: string;
type: "boolean" | "text" | "single_select" | "multiselect";
options?: Array<string | { name: string; description: string }>;
default?: string;
}
const devCompletionsFolderGenerator: Fig.Generator = {
script: 'ls -d -1 "$PWD/"**/',
postProcess: (out) =>
out.split("\n").map((folder) => {
const paths = folder.split("/");
paths.pop();
return {
name: paths.pop(),
insertValue: folder,
icon: `fig://${folder}`,
};
}),
};
const disableForCommandsGenerator: Fig.Generator = {
script: "fig settings autocomplete.disableForCommands",
postProcess: (out) => {
const existing = out.split("\n").filter((item) => item.length > 0);
const append: Fig.Suggestion = {
name: "Disable...",
icon: "fig://icon?type=box",
insertValue: JSON.stringify(existing.concat(["{cursor}"])),
};
const enabledAll: Fig.Suggestion = {
name: "Enable all commands",
icon: "fig://icon?type=box",
insertValue: "[]",
};
return [append, enabledAll].concat(
existing.map((disabledCommand) => {
return {
name: `Enable ${disabledCommand}`,
icon: "fig://icon?type=box",
insertValue: JSON.stringify(
existing.filter((cmd) => cmd != disabledCommand)
),
};
})
);
},
};
const themesGenerator: Fig.Generator = {
script: "ls -1 ~/.fig/themes",
postProcess: (output) => {
const builtinThemes = [
{
name: "light",
icon: "fig://template?color=ffffff&badge=☀️",
priority: 51,
},
{
name: "dark",
icon: "fig://template?color=000000&badge=🌙",
priority: 51,
},
];
return output
.split("\n")
.map((theme) => ({ name: theme.replace(".json", "") }))
.concat(builtinThemes);
},
};
const SETTINGS_GENERATOR: Record<string, Fig.Generator> = {
"autocomplete.devCompletionsFolder": devCompletionsFolderGenerator,
"autocomplete.disableForCommands": disableForCommandsGenerator,
"autocomplete.theme": themesGenerator,
};
const completionSpec: Fig.Spec = {
name: "fig",
description: "Autocomplete for your terminal",
subcommands: [
{
name: "source",
description: "(Re)connect fig to the current shell session",
},
{ name: "update", description: "Update completion specs and app" },
{
name: "theme",
description: "Set the Theme of fig",
args: {
name: "theme",
generators: themesGenerator,
},
},
{
name: "settings",
description: "Update preferences",
generateSpec: async (_, executeShellCommand) => {
const settings: Settings[] = JSON.parse(
await executeShellCommand(`cat ${SETTINGS_PATH}`)
);
return {
name: "settings",
subcommands: settings.map(
({
settingName: name,
description,
type,
options,
default: defaultValue,
}) => {
const suggestions =
type === "boolean"
? ["true", "false"]
: options?.map((option) => ({
name: option["name"] || option,
description: option["description"] || "",
}));
const insertValue =
type === "multiselect" ? `${name} '{cursor}'` : undefined;
const generators = SETTINGS_GENERATOR[name];
return {
name,
description,
icon: "fig://icon?type=commandkey",
insertValue,
args: {
name: type,
default: defaultValue,
suggestions: generators ? [] : suggestions,
generators,
},
};
}
),
};
},
},
{
name: "remove",
description: "Remove a completion spec",
args: {
name: "spec",
description: "The CLI completion spec to remove",
generators: {
script: "ls -1Ap ~/.fig/autocomplete",
postProcess: (data) => {
console.log(data);
const out = data.split("\n").reduce((acc, curr) => {
if (
[
".gitignore",
"README.md",
"package.json",
"package-lock.json",
].includes(curr)
)
return acc;
else {
acc.push({
name: curr.trim().split(".")[0],
icon: "fig://icon?type=box",
});
return acc;
}
}, []);
return out;
},
},
},
},
{
name: "invite",
description: "Share Fig with a teammate ⭐",
icon: "fig://icon?type=invite",
},
{ name: "report", description: "Report an issue" },
{
name: "tweet",
description: "Tweet about Fig",
icon: "fig://icon?type=twitter",
},
{ name: "docs", description: "View docs in browser" },
{ name: "list", description: "List all available completion specs" },
{ name: "onboarding", description: "Re-run Fig's onboarding" },
{ name: "diagnostic", description: "Display diagnostic information" },
{
name: "issue",
description: "Create a new Github issue in withfig/fig",
icon: "fig://icon?type=github",
},
{ name: "quit", description: "Quit the Fig application" },
{
name: "team:upload",
description: "Share an completion spec with your team",
args: {
name: "spec",
template: "filepaths",
},
},
{ name: "team:download", description: "Download your team's spec" },
{
name: "integrations:iterm",
description: "Install the iTerm tab integration",
},
{
name: "set:path",
description: "Sync your $PATH variable with Fig",
},
],
options: [
{
name: ["-h", "--help"],
description: "Overview of Fig CLI",
},
{
name: "--version",
description: "The current Fig version",
},
],
};
export default completionSpec;