You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
416 B
11 lines
416 B
# COMPLETION FUNCTION |
|
if (( $+commands[rustup] && $+commands[cargo] )); then |
|
if [[ ! -f $ZSH_CACHE_DIR/cargo_version ]] \ |
|
|| [[ "$(cargo --version)" != "$(< "$ZSH_CACHE_DIR/cargo_version")" ]] \ |
|
|| [[ ! -f $ZSH/plugins/cargo/_cargo ]]; then |
|
rustup completions zsh cargo > $ZSH/plugins/cargo/_cargo |
|
cargo --version > $ZSH_CACHE_DIR/cargo_version |
|
fi |
|
autoload -Uz _cargo |
|
_comps[cargo]=_cargo |
|
fi
|
|
|