diff options
Diffstat (limited to 'etc/completions')
-rw-r--r-- | etc/completions/_pkg | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/etc/completions/_pkg b/etc/completions/_pkg new file mode 100644 index 0000000..4953a81 --- /dev/null +++ b/etc/completions/_pkg @@ -0,0 +1,21 @@ +#compdef pkg +## vim:ft=zsh + +local values + +values=( + 'add' + 'changelog' + 'changeroot' + 'delete' + 'info' + 'install' + 'list' + 'list-all' + 'log' + 'remove' + 'status' + 'update' + '' +) +_values -w -s ' ' 'pkg function' $values |