mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-29 19:18:36 -07:00
29 lines
635 B
Bash
29 lines
635 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 -eq 1 ]] || return
|
|
_filedir '@(json|schema)'
|
|
} &&
|
|
complete -F _jsonschema jsonschema
|
|
|
|
# ex: filetype=sh
|