summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMarc Cornellà <hello@mcornella.com>2021-09-15 18:18:25 +0200
committerMarc Cornellà <hello@mcornella.com>2021-09-15 18:18:25 +0200
commit4e6e49652b69557c01ef1ce81c96da7eb9b34e6e (patch)
tree70f6f8f2610a60636d5f8b9acf5c3b784a1631b2 /plugins
parentc21ff38b8fda0584208ffd697dac0502e2327466 (diff)
downloadzsh-4e6e49652b69557c01ef1ce81c96da7eb9b34e6e.tar.gz
zsh-4e6e49652b69557c01ef1ce81c96da7eb9b34e6e.tar.bz2
zsh-4e6e49652b69557c01ef1ce81c96da7eb9b34e6e.zip
fix(plugins): fix `_comps` error in completion generation plugins (#10190)
Fixes #10190
Diffstat (limited to 'plugins')
-rw-r--r--plugins/cargo/cargo.plugin.zsh17
-rw-r--r--plugins/deno/deno.plugin.zsh16
-rw-r--r--plugins/fnm/fnm.plugin.zsh17
-rw-r--r--plugins/gh/gh.plugin.zsh17
-rw-r--r--plugins/rustup/rustup.plugin.zsh18
5 files changed, 55 insertions, 30 deletions
diff --git a/plugins/cargo/cargo.plugin.zsh b/plugins/cargo/cargo.plugin.zsh
index 92eae5359..b636d492f 100644
--- a/plugins/cargo/cargo.plugin.zsh
+++ b/plugins/cargo/cargo.plugin.zsh
@@ -1,11 +1,16 @@
-# 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
+ 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
diff --git a/plugins/deno/deno.plugin.zsh b/plugins/deno/deno.plugin.zsh
index a37b3bec4..71749f4a0 100644
--- a/plugins/deno/deno.plugin.zsh
+++ b/plugins/deno/deno.plugin.zsh
@@ -12,12 +12,18 @@ alias dup='deno upgrade'
# COMPLETION FUNCTION
if (( $+commands[deno] )); then
- if [[ ! -f $ZSH_CACHE_DIR/deno_version ]] \
- || [[ "$(deno --version)" != "$(< "$ZSH_CACHE_DIR/deno_version")" ]] \
- || [[ ! -f $ZSH/plugins/deno/_deno ]]; then
- deno completions zsh > $ZSH/plugins/deno/_deno
- deno --version > $ZSH_CACHE_DIR/deno_version
+ ver="$(deno --version)"
+ ver_file="$ZSH_CACHE_DIR/deno_version"
+ comp_file="$ZSH/plugins/deno/_deno"
+
+ if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
+ deno completions zsh >| "$comp_file"
+ echo "$ver" >| "$ver_file"
fi
+
+ declare -A _comps
autoload -Uz _deno
_comps[deno]=_deno
+
+ unset ver ver_file comp_file
fi
diff --git a/plugins/fnm/fnm.plugin.zsh b/plugins/fnm/fnm.plugin.zsh
index 5ce558dcb..29b759abb 100644
--- a/plugins/fnm/fnm.plugin.zsh
+++ b/plugins/fnm/fnm.plugin.zsh
@@ -1,12 +1,17 @@
-# COMPLETION FUNCTION
if (( $+commands[fnm] )); then
- if [[ ! -f $ZSH_CACHE_DIR/fnm_version ]] \
- || [[ "$(fnm --version)" != "$(< "$ZSH_CACHE_DIR/fnm_version")" ]] \
- || [[ ! -f $ZSH/plugins/fnm/_fnm ]]; then
- fnm completions --shell=zsh > $ZSH/plugins/fnm/_fnm
- fnm --version > $ZSH_CACHE_DIR/fnm_version
+ ver="$(fnm --version)"
+ ver_file="$ZSH_CACHE_DIR/fnm_version"
+ comp_file="$ZSH/plugins/fnm/_fnm"
+
+ if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
+ fnm completions --shell=zsh >| "$comp_file"
+ echo "$ver" >| "$ver_file"
fi
+
+ declare -A _comps
autoload -Uz _fnm
_comps[fnm]=_fnm
+
+ unset ver ver_file comp_file
fi
diff --git a/plugins/gh/gh.plugin.zsh b/plugins/gh/gh.plugin.zsh
index 8e055ec35..c3d87848d 100644
--- a/plugins/gh/gh.plugin.zsh
+++ b/plugins/gh/gh.plugin.zsh
@@ -1,13 +1,18 @@
# Autocompletion for the GitHub CLI (gh).
-
if (( $+commands[gh] )); then
- if [[ ! -r "$ZSH_CACHE_DIR/gh_version" \
- || "$(gh --version)" != "$(< "$ZSH_CACHE_DIR/gh_version")"
- || ! -f "$ZSH/plugins/gh/_gh" ]]; then
- gh completion --shell zsh > $ZSH/plugins/gh/_gh
- gh --version > $ZSH_CACHE_DIR/gh_version
+ ver="$(gh --version)"
+ ver_file="$ZSH_CACHE_DIR/gh_version"
+ comp_file="$ZSH/plugins/gh/_gh"
+
+ if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
+ gh completion --shell zsh >| "$comp_file"
+ echo "$ver" >| "$ver_file"
fi
+
+ declare -A _comps
autoload -Uz _gh
_comps[gh]=_gh
+
+ unset ver ver_file comp_file
fi
diff --git a/plugins/rustup/rustup.plugin.zsh b/plugins/rustup/rustup.plugin.zsh
index c7a9b3060..e709f41bd 100644
--- a/plugins/rustup/rustup.plugin.zsh
+++ b/plugins/rustup/rustup.plugin.zsh
@@ -1,12 +1,16 @@
-# 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
+ ver="$(rustup --version 2>/dev/null)"
+ ver_file="$ZSH_CACHE_DIR/rustup_version"
+ comp_file="$ZSH/plugins/rustup/_rustup"
+
+ if [[ ! -f "$comp_file" || ! -f "$ver_file" || "$ver" != "$(< "$ver_file")" ]]; then
+ rustup completions zsh >| "$comp_file"
+ echo "$ver" >| "$ver_file"
fi
+
+ declare -A _comps
autoload -Uz _rustup
_comps[rustup]=_rustup
+
+ unset ver ver_file comp_file
fi