summaryrefslogtreecommitdiff
path: root/plugins/cargo/cargo.plugin.zsh
blob: b636d492fd0c59670a8d307427f09c74b1f56f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if (( $+commands[rustup] && $+commands[cargo] )); then
  ver="$(cargo --version)"
  ver_file="$ZSH_CACHE_DIR/cargo_version"
  comp_file="$ZSH/plugins/cargo/_cargo"

  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