mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 01:10:09 +00:00
fix(doctl): actually load completions (#11402)
This commit is contained in:
parent
2bc42d223c
commit
9c2d1af8af
1 changed files with 10 additions and 2 deletions
|
@ -4,6 +4,14 @@
|
||||||
#
|
#
|
||||||
# Author: https://github.com/HalisCz
|
# Author: https://github.com/HalisCz
|
||||||
|
|
||||||
if [ $commands[doctl] ]; then
|
if (( ! $+commands[doctl] )); then
|
||||||
source <(doctl completion zsh)
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_doctl" ]]; then
|
||||||
|
typeset -g -A _comps
|
||||||
|
autoload -Uz _doctl
|
||||||
|
_comps[doctl]=_doctl
|
||||||
|
fi
|
||||||
|
|
||||||
|
doctl completion zsh >| "$ZSH_CACHE_DIR/completions/_doctl" &|
|
||||||
|
|
Loading…
Reference in a new issue