mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-30 00:37:52 +03:00
16 lines
402 B
Bash
16 lines
402 B
Bash
# hurlfmt(1) completion -*- shell-script -*-
|
|
_hurlfmt()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '--check --color --format --in-place --in --no-color --output --out --standalone --help --version' -- "$cur"))
|
|
return
|
|
fi
|
|
|
|
} &&
|
|
complete -F _hurlfmt hurlfmt
|
|
# ex: filetype=sh
|
|
|