mirror of
https://github.com/clap-rs/clap
synced 2025-01-08 10:48:45 +00:00
e782775229
Found while trying to add Nushell completions to [`jj`](https://github.com/martinvonz/jj).
10 lines
1 KiB
Fish
10 lines
1 KiB
Fish
complete -c bin-name -n "__fish_use_subcommand" -s c
|
|
complete -c bin-name -n "__fish_use_subcommand" -s v
|
|
complete -c bin-name -n "__fish_use_subcommand" -s h -l help -d 'Print help'
|
|
complete -c bin-name -n "__fish_use_subcommand" -f -a "test" -d 'Subcommand with a second line'
|
|
complete -c bin-name -n "__fish_use_subcommand" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
|
|
complete -c bin-name -n "__fish_seen_subcommand_from test" -s d
|
|
complete -c bin-name -n "__fish_seen_subcommand_from test" -s c
|
|
complete -c bin-name -n "__fish_seen_subcommand_from test" -s h -l help -d 'Print help'
|
|
complete -c bin-name -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 with a second line'
|
|
complete -c bin-name -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)'
|