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
This commit is contained in:
parent
96835d070c
commit
7a89c786e0
29
tools/zun.zsh_completion
Normal file
29
tools/zun.zsh_completion
Normal file
@ -0,0 +1,29 @@
|
||||
#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
|
||||
|
Loading…
Reference in New Issue
Block a user