clap/clap_complete_fig/tests/snapshots/quoting.fig.js

137 lines
3 KiB
JavaScript
Raw Normal View History

2022-03-07 20:08:56 +00:00
const completion: Fig.Spec = {
name: "my-app",
description: "",
subcommands: [
{
name: "cmd-single-quotes",
description: "Can be 'always', 'auto', or 'never'",
options: [
{
name: ["-h", "--help"],
description: "Print help",
2022-03-07 20:08:56 +00:00
},
],
},
{
name: "cmd-double-quotes",
2024-02-14 22:44:57 +00:00
description: "Can be \"always\", \"auto\", or \"never\"",
2022-03-07 20:08:56 +00:00
options: [
{
name: ["-h", "--help"],
description: "Print help",
2022-03-07 20:08:56 +00:00
},
],
},
{
name: "cmd-backticks",
description: "For more information see `echo test`",
options: [
{
name: ["-h", "--help"],
description: "Print help",
2022-03-07 20:08:56 +00:00
},
],
},
{
name: "cmd-backslash",
2024-02-14 22:44:57 +00:00
description: "Avoid '\\n'",
2022-03-07 20:08:56 +00:00
options: [
{
name: ["-h", "--help"],
description: "Print help",
2022-03-07 20:08:56 +00:00
},
],
},
{
name: "cmd-brackets",
description: "List packages [filter]",
options: [
{
name: ["-h", "--help"],
description: "Print help",
2022-03-07 20:08:56 +00:00
},
],
},
{
name: "cmd-expansions",
description: "Execute the shell command with $SHELL",
options: [
{
name: ["-h", "--help"],
description: "Print help",
2022-03-07 20:08:56 +00:00
},
],
},
{
name: "help",
description: "Print this message or the help of the given subcommand(s)",
subcommands: [
{
name: "cmd-single-quotes",
description: "Can be 'always', 'auto', or 'never'",
},
{
name: "cmd-double-quotes",
2024-02-14 22:44:57 +00:00
description: "Can be \"always\", \"auto\", or \"never\"",
},
{
name: "cmd-backticks",
description: "For more information see `echo test`",
},
{
name: "cmd-backslash",
2024-02-14 22:44:57 +00:00
description: "Avoid '\\n'",
},
{
name: "cmd-brackets",
description: "List packages [filter]",
},
{
name: "cmd-expansions",
description: "Execute the shell command with $SHELL",
},
{
name: "help",
description: "Print this message or the help of the given subcommand(s)",
},
],
2022-03-07 20:08:56 +00:00
},
],
options: [
{
name: "--single-quotes",
description: "Can be 'always', 'auto', or 'never'",
},
{
name: "--double-quotes",
2024-02-14 22:44:57 +00:00
description: "Can be \"always\", \"auto\", or \"never\"",
2022-03-07 20:08:56 +00:00
},
{
name: "--backticks",
description: "For more information see `echo test`",
},
{
name: "--backslash",
2024-02-14 22:44:57 +00:00
description: "Avoid '\\n'",
2022-03-07 20:08:56 +00:00
},
{
name: "--brackets",
description: "List packages [filter]",
},
{
name: "--expansions",
description: "Execute the shell command with $SHELL",
},
{
name: ["-h", "--help"],
description: "Print help",
},
{
name: ["-V", "--version"],
description: "Print version",
},
2022-03-07 20:08:56 +00:00
],
};
export default completion;