oc.plugin.zsh 187 B

12345678
  1. # Autocompletion for oc, the command line interface for OpenShift
  2. #
  3. # Author: https://github.com/kevinkirkup
  4. if [ $commands[oc] ]; then
  5. source <(oc completion zsh)
  6. compdef _oc oc
  7. fi