python-zunclient/tools/zun.zsh_completion
Kien Nguyen 7a89c786e0 Adds ZSH completion
Similar to patch set in Nova side [1]. As a Zsh user, I think this feature is
necessary.

[1] https://review.openstack.org/#/c/34972/

Change-Id: I297db41cb6eb7ecc1e1b0411aea992a5b063b4da
2018-01-15 10:25:44 +07:00

30 lines
715 B
Plaintext

#compdef zun
local -a nbc _zun_opts _zun_flags _zun_opts_exp cur prev
nbc=(${(ps: :)$(_call_program options "$service bash-completion" 2>/dev/null)})
_zun_opts=(${nbc:#-*})
_zun_flags=(${(M)nbc:#-*})
_zun_opt_exp=${${nbc:#-*}// /|}
cur=$words[CURRENT]
prev=$words[(( CURRENT - 1 ))]
_checkcomp(){
for word in $words[@]; do
if [[ -n ${_zun_opts[(r)$word]} ]]; then
return 0
fi
done
return 1
}
echo $_zun_opts[@] |grep --color zun
if [[ "$prev" != "help" ]] && _checkcomp; then
COMPLETION_CACHE=(~/.zunclient/*/*-cache)
cflags=($_zun_flags[@] ${(ps: :)$(cat $COMPLETION_CACHE 2>/dev/null)})
compadd "$@" -d $cflags[@]
else
compadd "$@" -d $_zun_opts[@]
fi