summaryrefslogtreecommitdiff
path: root/plugins/poetry/poetry.plugin.zsh
blob: cebcb46c40e8c20ae57b1d853d270333eca7ea98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Return immediately if poetry is not found
if (( ! $+commands[poetry] )); then
  return
fi

# If the completion file doesn't exist yet, we need to autoload it and
# bind it to `poetry`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_poetry" ]]; then
  typeset -g -A _comps
  autoload -Uz _poetry
  _comps[poetry]=_poetry
fi

poetry completions zsh >| "$ZSH_CACHE_DIR/completions/_poetry" &|