diff options
Diffstat (limited to 'zsh-completion/_cave')
-rw-r--r-- | zsh-completion/_cave | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/zsh-completion/_cave b/zsh-completion/_cave index 6607af389..81937a7bf 100644 --- a/zsh-completion/_cave +++ b/zsh-completion/_cave @@ -18,6 +18,7 @@ _cave() ) _cave_commands=( + 'config:Perform post-install configuration on a package' 'help:Display help information for a particular command' 'perform:Perform an action upon a package' 'print-categories:Prints a list of known categories' @@ -66,6 +67,13 @@ _cave() } +(( ${+functions[_cave_cmd_config]} )) || +_cave_cmd_config() +{ + _arguments -s : \ + '(--help -h)'{--help,-h}'[Display help messsage]' +} + (( ${+functions[_cave_cmd_help]} )) || _cave_cmd_help() { |