mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
d2269180b0
Fixes #10183
19 lines
547 B
Bash
19 lines
547 B
Bash
if (( $+commands[rustup] && $+commands[cargo] )); then
|
|
ver="$(cargo --version)"
|
|
ver_file="$ZSH_CACHE_DIR/cargo_version"
|
|
comp_file="$ZSH_CACHE_DIR/completions/_cargo"
|
|
|
|
mkdir -p "${comp_file:h}"
|
|
(( ${fpath[(Ie)${comp_file:h}]} )) || fpath=("${comp_file:h}" $fpath)
|
|
|
|
if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
|
|
rustup completions zsh cargo >| "$comp_file"
|
|
echo "$ver" >| "$ver_file"
|
|
fi
|
|
|
|
declare -A _comps
|
|
autoload -Uz _cargo
|
|
_comps[cargo]=_cargo
|
|
|
|
unset ver ver_file comp_file
|
|
fi
|