This commit is contained in:
Pete Johns 2026-05-20 13:38:46 +10:00 committed by GitHub
commit 27059cfa79
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,11 +7,15 @@ eval "$(mise activate zsh)"
# If the completion file doesn't exist yet, we need to autoload it and
# bind it to `mise`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_mise" ]]; then
local comp_file="$ZSH_CACHE_DIR/completions/_mise"
if [[ ! -f "$comp_file" ]]; then
typeset -g -A _comps
autoload -Uz _mise
_comps[mise]=_mise
fi
# Generate and load mise completion
mise completion zsh >| "$ZSH_CACHE_DIR/completions/_mise" &|
# Generate completion only when missing/empty or stale.
if [[ ! -s "$comp_file" || "$commands[mise]" -nt "$comp_file" ]]; then
mise completion zsh >| "$comp_file" &|
fi