mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-22 04:51:12 +02:00
Merge a9c74d0be5 into cb64103161
This commit is contained in:
commit
27059cfa79
1 changed files with 7 additions and 3 deletions
|
|
@ -7,11 +7,15 @@ eval "$(mise activate zsh)"
|
||||||
|
|
||||||
# If the completion file doesn't exist yet, we need to autoload it and
|
# 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.
|
# 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
|
typeset -g -A _comps
|
||||||
autoload -Uz _mise
|
autoload -Uz _mise
|
||||||
_comps[mise]=_mise
|
_comps[mise]=_mise
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Generate and load mise completion
|
# Generate completion only when missing/empty or stale.
|
||||||
mise completion zsh >| "$ZSH_CACHE_DIR/completions/_mise" &|
|
if [[ ! -s "$comp_file" || "$commands[mise]" -nt "$comp_file" ]]; then
|
||||||
|
mise completion zsh >| "$comp_file" &|
|
||||||
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue