1
0
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:
Marc Cornellà
2021-09-15 18:18:25 +02:00
parent c21ff38b8f
commit 4e6e49652b
5 changed files with 55 additions and 30 deletions

View File

@@ -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