summaryrefslogtreecommitdiffstats
path: root/completions/jsonschema
diff options
context:
space:
mode:
Diffstat (limited to 'completions/jsonschema')
-rw-r--r--completions/jsonschema30
1 files changed, 30 insertions, 0 deletions
diff --git a/completions/jsonschema b/completions/jsonschema
new file mode 100644
index 0000000..8a36ed3
--- /dev/null
+++ b/completions/jsonschema
@@ -0,0 +1,30 @@
+# 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