mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
0d0be51606
* Copy hide flag * Revert global args special handling. Another commit will address the issue of whether global args should be included in help subtrees.
13 lines
1.3 KiB
Fish
13 lines
1.3 KiB
Fish
complete -c my-app -n "__fish_use_subcommand" -s c
|
|
complete -c my-app -n "__fish_use_subcommand" -s v
|
|
complete -c my-app -n "__fish_use_subcommand" -s h -l help -d 'Print help information'
|
|
complete -c my-app -n "__fish_use_subcommand" -f -a "test" -d 'Subcommand'
|
|
complete -c my-app -n "__fish_use_subcommand" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
|
|
complete -c my-app -n "__fish_seen_subcommand_from test" -s d
|
|
complete -c my-app -n "__fish_seen_subcommand_from test" -s c
|
|
complete -c my-app -n "__fish_seen_subcommand_from test" -s h -l help -d 'Print help information'
|
|
complete -c my-app -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from test; and not __fish_seen_subcommand_from help" -s c
|
|
complete -c my-app -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from test; and not __fish_seen_subcommand_from help" -f -a "test" -d 'Subcommand'
|
|
complete -c my-app -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from test; and not __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
|
|
complete -c my-app -n "__fish_seen_subcommand_from help; and __fish_seen_subcommand_from test" -s c
|
|
complete -c my-app -n "__fish_seen_subcommand_from help; and __fish_seen_subcommand_from help" -s c
|