2015-02-15 04:05:27 +01:00
|
|
|
_nghttp()
|
|
|
|
{
|
|
|
|
local cur prev split=false
|
|
|
|
COMPREPLY=()
|
|
|
|
COMP_WORDBREAKS=${COMP_WORDBREAKS//=}
|
|
|
|
|
|
|
|
cmd=${COMP_WORDS[0]}
|
|
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
case $cur in
|
|
|
|
-*)
|
2021-09-20 10:07:58 +02:00
|
|
|
COMPREPLY=( $( compgen -W '--verbose --null-out --remote-name --timeout --window-bits --connection-window-bits --get-assets --stat --header --trailer --cert --key --data --multiply --upgrade --weight --peer-max-concurrent-streams --header-table-size --encoder-header-table-size --padding --har --color --continuation --no-content-length --no-dep --hexdump --no-push --max-concurrent-streams --expect-continue --no-verify-peer --version --help ' -- "$cur" ) )
|
2015-02-15 04:05:27 +01:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
esac
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
complete -F _nghttp nghttp
|