7506b11da7
This commit adds a new method `ToFishCompletion` to the `*App` which can be used to generate a fish completion string for the application. Relates to: #351 Signed-off-by: Sascha Grunert <sgrunert@suse.com>
29 lines
1.8 KiB
Fish
29 lines
1.8 KiB
Fish
# greet fish shell completion
|
|
|
|
function __fish_greet_no_subcommand --description 'Test if there has been any subcommand yet'
|
|
for i in (commandline -opc)
|
|
if contains -- $i config c sub-config s ss info i in some-command
|
|
return 1
|
|
end
|
|
end
|
|
return 0
|
|
end
|
|
|
|
complete -c greet -f -n '__fish_greet_no_subcommand' -l socket -s s -r -d 'some usage text'
|
|
complete -c greet -f -n '__fish_greet_no_subcommand' -l flag -s fl -s f -r
|
|
complete -c greet -f -n '__fish_greet_no_subcommand' -l another-flag -s b -d 'another usage text'
|
|
complete -c greet -f -n '__fish_greet_no_subcommand' -l help -s h -d 'show help'
|
|
complete -c greet -f -n '__fish_greet_no_subcommand' -l version -s v -d 'print the version'
|
|
complete -c greet -f -n '__fish_seen_subcommand_from config c' -l help -s h -d 'show help'
|
|
complete -c greet -f -n '__fish_greet_no_subcommand' -a 'config c' -d 'another usage test'
|
|
complete -c greet -f -n '__fish_seen_subcommand_from config c' -l flag -s fl -s f -r
|
|
complete -c greet -f -n '__fish_seen_subcommand_from config c' -l another-flag -s b -d 'another usage text'
|
|
complete -c greet -f -n '__fish_seen_subcommand_from sub-config s ss' -l help -s h -d 'show help'
|
|
complete -c greet -f -n '__fish_seen_subcommand_from config c' -a 'sub-config s ss' -d 'another usage test'
|
|
complete -c greet -f -n '__fish_seen_subcommand_from sub-config s ss' -l sub-flag -s sub-fl -s s -r
|
|
complete -c greet -f -n '__fish_seen_subcommand_from sub-config s ss' -l sub-command-flag -s s -d 'some usage text'
|
|
complete -c greet -f -n '__fish_seen_subcommand_from info i in' -l help -s h -d 'show help'
|
|
complete -c greet -f -n '__fish_greet_no_subcommand' -a 'info i in' -d 'retrieve generic information'
|
|
complete -c greet -f -n '__fish_seen_subcommand_from some-command' -l help -s h -d 'show help'
|
|
complete -c greet -f -n '__fish_greet_no_subcommand' -a 'some-command'
|