#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # Partly lifted from, and partly inspired by https://github.com/romkatv/zsh4humans/blob/0029ed672a55ad9a109c3ce32893affff35f9e90/fn/-z4h-complete-helm (( $+commands[helm] )) || return local helm="${commands[helm]-}" local compfile="$ZDATADIR/completion/_helm" # Check if compfile is newer than helm-binary. The binary produces the completion-file, so this is a sane check. if [[ ! $compfile -nt $helm ]]; then command helm completion zsh > $compfile || return fi return 0 # END OF FILE #################################################################