dotfiles/zsh/funcs/oc
2021-03-22 08:23:30 -04:00

8 lines
235 B
Text

if [[ ( $ZNAP_USED = 1 ) ]]; then
if [[ $( command -v kubectl ) ]]; then
znap compdef _kubectl 'kubectl completion zsh'
fi
if [[ $( command -v oc ) ]]; then
znap compdef _oc 'oc completion zsh'
fi
fi