mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-12-27 16:59:03 +01:00
fix(plugins): fix _comps
error in completion generation plugins (#10190)
Fixes #10190
This commit is contained in:
parent
c21ff38b8f
commit
4e6e49652b
@ -1,11 +1,16 @@
|
|||||||
# COMPLETION FUNCTION
|
|
||||||
if (( $+commands[rustup] && $+commands[cargo] )); then
|
if (( $+commands[rustup] && $+commands[cargo] )); then
|
||||||
if [[ ! -f $ZSH_CACHE_DIR/cargo_version ]] \
|
ver="$(cargo --version)"
|
||||||
|| [[ "$(cargo --version)" != "$(< "$ZSH_CACHE_DIR/cargo_version")" ]] \
|
ver_file="$ZSH_CACHE_DIR/cargo_version"
|
||||||
|| [[ ! -f $ZSH/plugins/cargo/_cargo ]]; then
|
comp_file="$ZSH/plugins/cargo/_cargo"
|
||||||
rustup completions zsh cargo > $ZSH/plugins/cargo/_cargo
|
|
||||||
cargo --version > $ZSH_CACHE_DIR/cargo_version
|
if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
|
||||||
|
rustup completions zsh cargo >| "$comp_file"
|
||||||
|
echo "$ver" >| "$ver_file"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
declare -A _comps
|
||||||
autoload -Uz _cargo
|
autoload -Uz _cargo
|
||||||
_comps[cargo]=_cargo
|
_comps[cargo]=_cargo
|
||||||
|
|
||||||
|
unset ver ver_file comp_file
|
||||||
fi
|
fi
|
||||||
|
@ -12,12 +12,18 @@ alias dup='deno upgrade'
|
|||||||
|
|
||||||
# COMPLETION FUNCTION
|
# COMPLETION FUNCTION
|
||||||
if (( $+commands[deno] )); then
|
if (( $+commands[deno] )); then
|
||||||
if [[ ! -f $ZSH_CACHE_DIR/deno_version ]] \
|
ver="$(deno --version)"
|
||||||
|| [[ "$(deno --version)" != "$(< "$ZSH_CACHE_DIR/deno_version")" ]] \
|
ver_file="$ZSH_CACHE_DIR/deno_version"
|
||||||
|| [[ ! -f $ZSH/plugins/deno/_deno ]]; then
|
comp_file="$ZSH/plugins/deno/_deno"
|
||||||
deno completions zsh > $ZSH/plugins/deno/_deno
|
|
||||||
deno --version > $ZSH_CACHE_DIR/deno_version
|
if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
|
||||||
|
deno completions zsh >| "$comp_file"
|
||||||
|
echo "$ver" >| "$ver_file"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
declare -A _comps
|
||||||
autoload -Uz _deno
|
autoload -Uz _deno
|
||||||
_comps[deno]=_deno
|
_comps[deno]=_deno
|
||||||
|
|
||||||
|
unset ver ver_file comp_file
|
||||||
fi
|
fi
|
||||||
|
@ -1,12 +1,17 @@
|
|||||||
# COMPLETION FUNCTION
|
|
||||||
if (( $+commands[fnm] )); then
|
if (( $+commands[fnm] )); then
|
||||||
if [[ ! -f $ZSH_CACHE_DIR/fnm_version ]] \
|
ver="$(fnm --version)"
|
||||||
|| [[ "$(fnm --version)" != "$(< "$ZSH_CACHE_DIR/fnm_version")" ]] \
|
ver_file="$ZSH_CACHE_DIR/fnm_version"
|
||||||
|| [[ ! -f $ZSH/plugins/fnm/_fnm ]]; then
|
comp_file="$ZSH/plugins/fnm/_fnm"
|
||||||
fnm completions --shell=zsh > $ZSH/plugins/fnm/_fnm
|
|
||||||
fnm --version > $ZSH_CACHE_DIR/fnm_version
|
if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
|
||||||
|
fnm completions --shell=zsh >| "$comp_file"
|
||||||
|
echo "$ver" >| "$ver_file"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
declare -A _comps
|
||||||
autoload -Uz _fnm
|
autoload -Uz _fnm
|
||||||
_comps[fnm]=_fnm
|
_comps[fnm]=_fnm
|
||||||
|
|
||||||
|
unset ver ver_file comp_file
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -1,13 +1,18 @@
|
|||||||
# Autocompletion for the GitHub CLI (gh).
|
# Autocompletion for the GitHub CLI (gh).
|
||||||
|
|
||||||
if (( $+commands[gh] )); then
|
if (( $+commands[gh] )); then
|
||||||
if [[ ! -r "$ZSH_CACHE_DIR/gh_version" \
|
ver="$(gh --version)"
|
||||||
|| "$(gh --version)" != "$(< "$ZSH_CACHE_DIR/gh_version")"
|
ver_file="$ZSH_CACHE_DIR/gh_version"
|
||||||
|| ! -f "$ZSH/plugins/gh/_gh" ]]; then
|
comp_file="$ZSH/plugins/gh/_gh"
|
||||||
gh completion --shell zsh > $ZSH/plugins/gh/_gh
|
|
||||||
gh --version > $ZSH_CACHE_DIR/gh_version
|
if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
|
||||||
|
gh completion --shell zsh >| "$comp_file"
|
||||||
|
echo "$ver" >| "$ver_file"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
declare -A _comps
|
||||||
autoload -Uz _gh
|
autoload -Uz _gh
|
||||||
_comps[gh]=_gh
|
_comps[gh]=_gh
|
||||||
|
|
||||||
|
unset ver ver_file comp_file
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -1,12 +1,16 @@
|
|||||||
# COMPLETION FUNCTION
|
|
||||||
if (( $+commands[rustup] )); then
|
if (( $+commands[rustup] )); then
|
||||||
if [[ ! -f $ZSH_CACHE_DIR/rustup_version ]] \
|
ver="$(rustup --version 2>/dev/null)"
|
||||||
|| [[ "$(rustup --version 2> /dev/null)" \
|
ver_file="$ZSH_CACHE_DIR/rustup_version"
|
||||||
!= "$(< "$ZSH_CACHE_DIR/rustup_version")" ]] \
|
comp_file="$ZSH/plugins/rustup/_rustup"
|
||||||
|| [[ ! -f $ZSH/plugins/rustup/_rustup ]]; then
|
|
||||||
rustup completions zsh > $ZSH/plugins/rustup/_rustup
|
if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
|
||||||
rustup --version 2> /dev/null > $ZSH_CACHE_DIR/rustup_version
|
rustup completions zsh >| "$comp_file"
|
||||||
|
echo "$ver" >| "$ver_file"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
declare -A _comps
|
||||||
autoload -Uz _rustup
|
autoload -Uz _rustup
|
||||||
_comps[rustup]=_rustup
|
_comps[rustup]=_rustup
|
||||||
|
|
||||||
|
unset ver ver_file comp_file
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user