Blame view

repos/robbyrussell/oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh 183 Bytes
d9bebbb3c   mj   Squashed 'repos/r...
1
2
3
4
5
6
7
  # Autocompletion for kubectl, the command line interface for Kubernetes
  #
  # Author: https://github.com/pstadler
  
  if [ $commands[kubectl] ]; then
    source <(kubectl completion zsh)
  fi