mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-08 00:10:41 +01:00
fix(plugins): fix _comps error in completion generation plugins (#10190)
Fixes #10190
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user