Skip to content

Commit ef98a2d

Browse files
authored
feat: add mix completion spec (withfig#501)
* feat: add mix completion spec * fix: remove unneccessary replace * feat: reduce cache time and hide options by default * fix: remove Usage: mix [task] Examples: mix - Invokes the default task (mix run) in a project mix new PATH - Creates a new Elixir project at the given path mix help - Lists all available tasks mix help TASK - Prints documentation for a given task The --help and --version options can be given instead of a task for usage and versioning information. from suggestions * chore: revert package-lock.json * add generators * revert unintended changes
1 parent 608771c commit ef98a2d

File tree

2 files changed

+43
-3
lines changed

2 files changed

+43
-3
lines changed

.all-contributorsrc

+10-1
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,15 @@
237237
"contributions": [
238238
"code"
239239
]
240+
},
241+
{
242+
"login": "benvp",
243+
"name": "Benjamin von Polheim",
244+
"avatar_url": "https://avatars.githubusercontent.com/u/981344?v=4",
245+
"profile": "https://github.com/benvp",
246+
"contributions": [
247+
"code"
248+
]
240249
}
241250
]
242-
}
251+
}

dev/mix.ts

+33-2
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,18 @@ const completionSpec: Fig.Spec = {
4747
],
4848
},
4949
{
50-
name: "pp",
50+
name: "help",
5151
description:
5252
"Prints documentation for a given task (Lists all the tasks if no task is specified)",
5353
args: {
54-
isOptional: true,
5554
name: "task",
55+
isOptional: true,
56+
description: "Prints documentation for a given task",
57+
generators: {
58+
cache: { ttl: 10000 },
59+
script: "mix help",
60+
postProcess: makeTaskSuggestions,
61+
},
5662
},
5763
options: [
5864
{
@@ -70,6 +76,17 @@ const completionSpec: Fig.Spec = {
7076
],
7177
},
7278
],
79+
args: {
80+
name: "task",
81+
description: "Invokes the task (mix run) in a project",
82+
isOptional: true,
83+
generators: {
84+
cache: { ttl: 10000 },
85+
script: "mix help",
86+
postProcess: makeTaskSuggestions,
87+
},
88+
},
89+
7390
options: [
7491
{
7592
name: ["-h", "--help"],
@@ -82,4 +99,18 @@ const completionSpec: Fig.Spec = {
8299
],
83100
};
84101

102+
function makeTaskSuggestions(out: string) {
103+
return out
104+
.split("\n")
105+
.map((task) => {
106+
const [name, description] = task.split("#").map((x) => x.trim());
107+
108+
return {
109+
name: name.replace(/^mix /, ""),
110+
description,
111+
};
112+
}) // filter out commands which do not make sense here
113+
.filter((x) => !["mix", "help", "new", "iex -S mix"].includes(x.name));
114+
}
115+
85116
export default completionSpec;

0 commit comments

Comments
 (0)