2021-10-06 22:43:09 +02:00
|
|
|
if ! (( $+commands[rustup] && $+commands[cargo] )); then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If the completion file doesn't exist yet, we need to autoload it and
|
|
|
|
# bind it to `cargo`. Otherwise, compinit will have already done that
|
|
|
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_cargo" ]]; then
|
|
|
|
autoload -Uz _cargo
|
2022-01-05 09:10:32 +01:00
|
|
|
typeset -g -A _comps
|
2021-10-06 22:43:09 +02:00
|
|
|
_comps[cargo]=_cargo
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If the completion file doesn't exist yet, we need to autoload it and
|
|
|
|
# bind it to `rustup`. Otherwise, compinit will have already done that
|
|
|
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_rustup" ]]; then
|
|
|
|
autoload -Uz _rustup
|
2022-01-05 09:10:32 +01:00
|
|
|
typeset -g -A _comps
|
2021-10-06 22:43:09 +02:00
|
|
|
_comps[rustup]=_rustup
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Generate completion files in the background
|
|
|
|
rustup completions zsh >| "$ZSH_CACHE_DIR/completions/_rustup" &|
|
2021-12-29 17:18:21 +01:00
|
|
|
cat >| "$ZSH_CACHE_DIR/completions/_cargo" <<'EOF'
|
|
|
|
#compdef cargo
|
2022-01-08 20:03:32 +01:00
|
|
|
source "$(rustc +${${(z)$(rustup default)}[1]} --print sysroot)"/share/zsh/site-functions/_cargo
|
2021-12-29 17:18:21 +01:00
|
|
|
EOF
|