20 lines
676 B
Plaintext
20 lines
676 B
Plaintext
|
_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
|
||
|
-*)
|
||
|
COMPREPLY=( $( compgen -W '--verbose --no-dep --get-assets --har --header-table-size --multiply --padding --dep-idle --continuation --connection-window-bits --peer-max-concurrent-streams --timeout --data --no-content-length --version --color --cert --upgrade --remote-name --weight --help --key --null-out --window-bits --stat --header ' -- "$cur" ) )
|
||
|
;;
|
||
|
*)
|
||
|
_filedir
|
||
|
return 0
|
||
|
esac
|
||
|
return 0
|
||
|
}
|
||
|
complete -F _nghttp nghttp
|