diff options
Diffstat (limited to 'completions/zsh/_sbocheck')
-rw-r--r-- | completions/zsh/_sbocheck | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/completions/zsh/_sbocheck b/completions/zsh/_sbocheck new file mode 100644 index 0000000..6c1378f --- /dev/null +++ b/completions/zsh/_sbocheck @@ -0,0 +1,14 @@ +#compdef sbocheck + +# sbotools: https://pink-mist.github.io/sbotools/ + +_arguments \ + '(-)'{-h,--help}'[Show help.]:' \ + '(-)'{-v,--version}'[Show version.]:' \ + && return 0 + +return 1 + +# Local Variables: +# mode: sh +# End: |