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 "some_cmd" -d 'tests other things' 6complete -c my-app -n "__fish_use_subcommand" -f -a "some-cmd-with-hyphens" 7complete -c my-app -n "__fish_use_subcommand" -f -a "some-hidden-cmd" 8complete -c my-app -n "__fish_use_subcommand" -f -a "help" -d 'Print this message or the help of the given subcommand(s)' 9complete -c my-app -n "__fish_seen_subcommand_from test" -l case -d 'the case to test' -r 10complete -c my-app -n "__fish_seen_subcommand_from test" -s h -l help -d 'Print help' 11complete -c my-app -n "__fish_seen_subcommand_from test" -s V -l version -d 'Print version' 12complete -c my-app -n "__fish_seen_subcommand_from some_cmd" -l config -d 'the other case to test' -r 13complete -c my-app -n "__fish_seen_subcommand_from some_cmd" -s h -l help -d 'Print help' 14complete -c my-app -n "__fish_seen_subcommand_from some_cmd" -s V -l version -d 'Print version' 15complete -c my-app -n "__fish_seen_subcommand_from some-cmd-with-hyphens" -s h -l help -d 'Print help' 16complete -c my-app -n "__fish_seen_subcommand_from some-cmd-with-hyphens" -s V -l version -d 'Print version' 17complete -c my-app -n "__fish_seen_subcommand_from some-hidden-cmd" -s h -l help -d 'Print help' 18complete -c my-app -n "__fish_seen_subcommand_from some-hidden-cmd" -s V -l version -d 'Print version' 19complete -c my-app -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from test; and not __fish_seen_subcommand_from some_cmd; and not __fish_seen_subcommand_from some-cmd-with-hyphens; and not __fish_seen_subcommand_from some-hidden-cmd; and not __fish_seen_subcommand_from help" -f -a "test" -d 'tests things' 20complete -c my-app -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from test; and not __fish_seen_subcommand_from some_cmd; and not __fish_seen_subcommand_from some-cmd-with-hyphens; and not __fish_seen_subcommand_from some-hidden-cmd; and not __fish_seen_subcommand_from help" -f -a "some_cmd" -d 'tests other things' 21complete -c my-app -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from test; and not __fish_seen_subcommand_from some_cmd; and not __fish_seen_subcommand_from some-cmd-with-hyphens; and not __fish_seen_subcommand_from some-hidden-cmd; and not __fish_seen_subcommand_from help" -f -a "some-cmd-with-hyphens" 22complete -c my-app -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from test; and not __fish_seen_subcommand_from some_cmd; and not __fish_seen_subcommand_from some-cmd-with-hyphens; and not __fish_seen_subcommand_from some-hidden-cmd; and not __fish_seen_subcommand_from help" -f -a "some-hidden-cmd" 23complete -c my-app -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from test; and not __fish_seen_subcommand_from some_cmd; and not __fish_seen_subcommand_from some-cmd-with-hyphens; and not __fish_seen_subcommand_from some-hidden-cmd; and not __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)' 24