Created
April 9, 2014 19:49
-
-
Save petere/10307599 to your computer and use it in GitHub Desktop.
zsh completion for test-kitchen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef kitchen | |
_kitchen() { | |
local curcontext="$curcontext" state line | |
typeset -A opt_args | |
_arguments '1: :->cmds'\ | |
'2: :->args' | |
case $state in | |
cmds) | |
_arguments "1:Commands:(console converge create destroy diagnose driver help init list login setup test verify version)" | |
;; | |
args) | |
case $line[1] in | |
converge|create|destroy|diagnose|list|setup|test|verify) | |
compadd "$@" all | |
_kitchen_instances | |
;; | |
login) | |
_kitchen_instances | |
;; | |
esac | |
;; | |
esac | |
} | |
_kitchen_instances() { | |
if [[ $_kitchen_instances_cache_dir != $PWD ]]; then | |
unset _kitchen_instances_cache | |
fi | |
if [[ ${+_kitchen_instances_cache} -eq 0 ]]; then | |
_kitchen_instances_cache=(${(f)"$(bundle exec kitchen list -b 2>/dev/null || kitchen list -b 2>/dev/null)"}) | |
_kitchen_instances_cache_dir=$PWD | |
fi | |
compadd -a _kitchen_instances_cache | |
} | |
_kitchen "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Never mind; I have a PR that makes zsh-lovers/zsh-completion compatible with antigen as a plugin.