mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
122b562e6b
This is in prep for removing StoreValue/IncOccurrences
69 lines
1.4 KiB
JavaScript
69 lines
1.4 KiB
JavaScript
const completion: Fig.Spec = {
|
|
name: "my-app",
|
|
description: "Tests completions",
|
|
subcommands: [
|
|
{
|
|
name: "test",
|
|
description: "tests things",
|
|
options: [
|
|
{
|
|
name: "--case",
|
|
description: "the case to test",
|
|
isRepeatable: true,
|
|
args: {
|
|
name: "case",
|
|
isOptional: true,
|
|
},
|
|
},
|
|
{
|
|
name: ["-h", "--help"],
|
|
description: "Print help information",
|
|
},
|
|
{
|
|
name: ["-V", "--version"],
|
|
description: "Print version information",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: "help",
|
|
description: "Print this message or the help of the given subcommand(s)",
|
|
args: {
|
|
name: "subcommand",
|
|
isOptional: true,
|
|
},
|
|
},
|
|
],
|
|
options: [
|
|
{
|
|
name: ["-h", "--help"],
|
|
description: "Print help information",
|
|
},
|
|
{
|
|
name: ["-V", "--version"],
|
|
description: "Print version information",
|
|
},
|
|
{
|
|
name: ["-c", "-C", "--config", "--conf"],
|
|
description: "some config file",
|
|
isRepeatable: true,
|
|
},
|
|
],
|
|
args: [
|
|
{
|
|
name: "file",
|
|
isOptional: true,
|
|
template: "filepaths",
|
|
},
|
|
{
|
|
name: "choice",
|
|
isOptional: true,
|
|
suggestions: [
|
|
"first",
|
|
"second",
|
|
],
|
|
},
|
|
]
|
|
};
|
|
|
|
export default completion;
|