#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ (( $+commands[restic] )) || return # Return if bin does not exist (( $+functions[_restic] )) && return # Return if completion function already exists local restic="${commands[restic]-}" local compfile="$ZDATADIR/completion/_restic" # Check if compfile is newer than binary. The binary produces the completion-file, so this is a sane check. if [[ ! $compfile -nt $restic ]]; then command restic generate --zsh-completion="$compfile" || return fi return 0 # END OF FILE #################################################################