diff options
Diffstat (limited to 'provides/zsh')
-rw-r--r-- | provides/zsh/completions/_pkg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/provides/zsh/completions/_pkg b/provides/zsh/completions/_pkg index e4ecfff..b9008f5 100644 --- a/provides/zsh/completions/_pkg +++ b/provides/zsh/completions/_pkg @@ -9,7 +9,7 @@ typeset expl function _pkg_action () { _wanted action expl 'action' \ - compadd add install changelog changeroot check delete remove info \ + compadd add install changelog changeroot check delete eval remove info \ list list-all local-update log push remote-update status update upgrade } @@ -36,5 +36,5 @@ if (( CURRENT >= 3 )) { add|install) _arguments -s '2: :_pkg_notinstalled' ;; esac } else { - _arguments -s '1: :_pkg_action' + _pkg_action } |