timoni.plugin.zsh 435 B

1234567891011121314
  1. # Autocompletion for the Timoni CLI (timoni).
  2. if (( ! $+commands[timoni] )); then
  3. return
  4. fi
  5. # If the completion file doesn't exist yet, we need to autoload it and
  6. # bind it to `timoni`. Otherwise, compinit will have already done that.
  7. if [[ ! -f "$ZSH_CACHE_DIR/completions/_timoni" ]]; then
  8. typeset -g -A _comps
  9. autoload -Uz _timoni
  10. _comps[timoni]=_timoni
  11. fi
  12. timoni completion zsh >| "$ZSH_CACHE_DIR/completions/_timoni" &|