clap/clap_complete_fig/tests/snapshots/feature_sample.fig.js
Federico Ciardi 791d43254c fix(clap_complete_fig): Correct indentation and spacing
Co-Authored-By: Grant G <grantgurvis@gmail.com>
2022-03-17 21:50:10 +01:00

68 lines
1.3 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",
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;