2022-08-08 21:08:47 +00:00
|
|
|
complete -c my-app -n "__fish_use_subcommand" -s c -s C -l config -l conf -d 'some config file'
|
2022-03-07 20:03:46 +00:00
|
|
|
complete -c my-app -n "__fish_use_subcommand" -s h -l help -d 'Print help information'
|
|
|
|
complete -c my-app -n "__fish_use_subcommand" -s V -l version -d 'Print version information'
|
|
|
|
complete -c my-app -n "__fish_use_subcommand" -f -a "test" -d 'tests things'
|
|
|
|
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" -l case -d 'the case to test' -r
|
|
|
|
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 test" -s V -l version -d 'Print version information'
|