1complete -c my-app -n "__fish_use_subcommand" -s c 2complete -c my-app -n "__fish_use_subcommand" -s v 3complete -c my-app -n "__fish_use_subcommand" -s h -l help -d 'Print help' 4complete -c my-app -n "__fish_use_subcommand" -f -a "test" -d 'Subcommand' 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" -s d 7complete -c my-app -n "__fish_seen_subcommand_from test" -s c 8complete -c my-app -n "__fish_seen_subcommand_from test" -s h -l help -d 'Print help' 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 'Subcommand' 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