1complete -c my-app -n "__fish_use_subcommand" -s c -s C -l config -l conf -d 'some config file' 2complete -c my-app -n "__fish_use_subcommand" -s h -l help -d 'Print help' 3complete -c my-app -n "__fish_use_subcommand" -s V -l version -d 'Print version' 4complete -c my-app -n "__fish_use_subcommand" -f -a "test" -d 'tests things' 5complete -c my-app -n "__fish_use_subcommand" -f -a "help" -d 'Print this message or the help of the given subcommand(s)' 6complete -c my-app -n "__fish_seen_subcommand_from test" -l case -d 'the case to test' -r 7complete -c my-app -n "__fish_seen_subcommand_from test" -s h -l help -d 'Print help' 8complete -c my-app -n "__fish_seen_subcommand_from test" -s V -l version -d 'Print version' 9complete -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 'tests things' 10complete -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)' 11