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
119 lines
2.6 KiB
JavaScript
119 lines
2.6 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: "some_cmd",
|
|
description: "top level subcommand",
|
|
subcommands: [
|
|
{
|
|
name: "sub_cmd",
|
|
description: "sub-subcommand",
|
|
options: [
|
|
{
|
|
name: "--config",
|
|
description: "the other case to test",
|
|
isRepeatable: true,
|
|
args: {
|
|
name: "config",
|
|
isOptional: true,
|
|
suggestions: [
|
|
"Lest quotes aren't escaped.",
|
|
],
|
|
},
|
|
},
|
|
{
|
|
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: "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;
|