forked from extern/httpie-cli
0001297f41
* Add --raw to allow specifying the raw request body without extra processing As an alternative to `stdin`. Co-authored-by: Elena Lape <elapinskaite@gmail.com> Co-authored-by: Jakub Roztocil <jakub@roztocil.co> * Update README.rst Co-authored-by: Jakub Roztocil <jakub@roztocil.co> * Update README.rst Co-authored-by: Jakub Roztocil <jakub@roztocil.co> * Fix default HTTP method on empty data Co-authored-by: Elena Lape <elapinskaite@gmail.com> Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
24 lines
737 B
Bash
24 lines
737 B
Bash
#!/usr/bin/env bash
|
|
|
|
|
|
_http_complete() {
|
|
local cur_word=${COMP_WORDS[COMP_CWORD]}
|
|
local prev_word=${COMP_WORDS[COMP_CWORD - 1]}
|
|
|
|
if [[ "$cur_word" == -* ]]; then
|
|
_http_complete_options "$cur_word"
|
|
fi
|
|
}
|
|
|
|
complete -o default -F _http_complete http
|
|
|
|
_http_complete_options() {
|
|
local cur_word=$1
|
|
local options="-j --json -f --form --pretty -s --style -p --print
|
|
-v --verbose -h --headers -b --body -S --stream -o --output -d --download
|
|
-c --continue --session --session-read-only -a --auth --auth-type --proxy
|
|
--follow --verify --cert --cert-key --timeout --check-status --ignore-stdin
|
|
--help --version --traceback --debug --raw"
|
|
COMPREPLY=( $( compgen -W "$options" -- "$cur_word" ) )
|
|
}
|