#!/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-kubectl (( $+commands[kubectl] )) || return local kubectl="${commands[kubectl]-}" local compfile="$ZDATADIR/completion/_kubectl" # Check if compfile is newer than kubectl-binary. The binary produces the completion-file, so this is a sane check. if [[ ! $compfile -nt $kubectl ]]; then command kubectl completion zsh > $compfile || return fi return 0 # END OF FILE #################################################################