fix: automatically create completion for cargo and rustup plugins (#10087)

This commit is contained in:
Carlo Sala 2021-09-07 20:02:20 +02:00 committed by GitHub
commit 450acc0113
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 25 additions and 1550 deletions

1
plugins/rustup/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
_rustup

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,12 @@
# COMPLETION FUNCTION
if (( $+commands[rustup] )); then
if [[ ! -f $ZSH_CACHE_DIR/rustup_version ]] \
|| [[ "$(rustup --version 2> /dev/null)" \
!= "$(< "$ZSH_CACHE_DIR/rustup_version")" ]] \
|| [[ ! -f $ZSH/plugins/rustup/_rustup ]]; then
rustup completions zsh > $ZSH/plugins/rustup/_rustup
rustup --version 2> /dev/null > $ZSH_CACHE_DIR/rustup_version
fi
autoload -Uz _rustup
_comps[rustup]=_rustup
fi