mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-03-12 04:36:22 -07:00
31 lines
642 B
Bash
31 lines
642 B
Bash
# bash completion for jsonschema -*- shell-script -*-
|
|
|
|
_jsonschema()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
case $prev in
|
|
--help | --error-format | --validator | -[hFV])
|
|
return
|
|
;;
|
|
--instance | -i)
|
|
_filedir json
|
|
return
|
|
;;
|
|
esac
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
|
|
return
|
|
fi
|
|
|
|
local args
|
|
_count_args "" "-*"
|
|
((args == 1)) || return
|
|
_filedir '@(json|schema)'
|
|
} &&
|
|
complete -F _jsonschema jsonschema
|
|
|
|
# ex: filetype=sh
|