mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
13 lines
394 B
Bash
13 lines
394 B
Bash
if (( ! $+commands[finch] )); then
|
|
return
|
|
fi
|
|
|
|
# If the completion file doesn't exist yet, we need to autoload it and
|
|
# bind it to `finch`. Otherwise, compinit will have already done that.
|
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_finch" ]]; then
|
|
typeset -g -A _comps
|
|
autoload -Uz _finch
|
|
_comps[finch]=_finch
|
|
fi
|
|
|
|
finch completion zsh 2> /dev/null >| "$ZSH_CACHE_DIR/completions/_finch" &|
|