1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
complete -c ranger -n "__fish_use_subcommand" -s e -l experimental -d 'Enables experimental features.'
complete -c ranger -n "__fish_use_subcommand" -s h -l help -d 'Print help'
complete -c ranger -n "__fish_use_subcommand" -s V -l version -d 'Print version'
complete -c ranger -n "__fish_use_subcommand" -f -a "man" -d 'Renders the manual.'
complete -c ranger -n "__fish_use_subcommand" -f -a "autocomplete" -d 'Renders shell completion scripts.'
complete -c ranger -n "__fish_use_subcommand" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ranger -n "__fish_seen_subcommand_from man" -s o -l out -r
complete -c ranger -n "__fish_seen_subcommand_from man" -s f -l format -r -f -a "{manpages	,markdown	}"
complete -c ranger -n "__fish_seen_subcommand_from man" -s h -l help -d 'Print help'
complete -c ranger -n "__fish_seen_subcommand_from man" -s V -l version -d 'Print version'
complete -c ranger -n "__fish_seen_subcommand_from autocomplete" -s o -l out -r
complete -c ranger -n "__fish_seen_subcommand_from autocomplete" -s s -l shell -r -f -a "{bash	,zsh	,fish	,elvish	,powershell	}"
complete -c ranger -n "__fish_seen_subcommand_from autocomplete" -s h -l help -d 'Print help'
complete -c ranger -n "__fish_seen_subcommand_from autocomplete" -s V -l version -d 'Print version'
complete -c ranger -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from man; and not __fish_seen_subcommand_from autocomplete; and not __fish_seen_subcommand_from help" -f -a "man" -d 'Renders the manual.'
complete -c ranger -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from man; and not __fish_seen_subcommand_from autocomplete; and not __fish_seen_subcommand_from help" -f -a "autocomplete" -d 'Renders shell completion scripts.'
complete -c ranger -n "__fish_seen_subcommand_from help; and not __fish_seen_subcommand_from man; and not __fish_seen_subcommand_from autocomplete; and not __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'