2024-05-11 01:16:45 +08:00
|
|
|
if (( ! $+commands[procs] )); then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If the completion file doesn't exist yet, we need to autoload it and
|
2025-04-20 03:08:03 +08:00
|
|
|
# bind it to `procs`. Otherwise, compinit will have already done that.
|
2024-05-11 01:16:45 +08:00
|
|
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_procs" ]]; then
|
|
|
|
typeset -g -A _comps
|
|
|
|
autoload -Uz _procs
|
|
|
|
_comps[procs]=_procs
|
|
|
|
fi
|
|
|
|
|
2025-04-20 03:08:03 +08:00
|
|
|
{
|
|
|
|
autoload -Uz is-at-least
|
|
|
|
local _version=$(procs --version)
|
|
|
|
if is-at-least "0.14" "${_version#procs }"; then
|
|
|
|
procs --gen-completion-out zsh >| "$ZSH_CACHE_DIR/completions/_procs"
|
|
|
|
else
|
|
|
|
procs --completion-out zsh >| "$ZSH_CACHE_DIR/completions/_procs"
|
|
|
|
fi
|
|
|
|
} &|
|