1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00
ohmyzsh/plugins/kubectl/kubectl.plugin.zsh
2016-08-14 17:30:55 -07:00

7 lines
183 B
Bash

# Autocompletion for kubectl, the command line interface for Kubernetes
#
# Author: https://github.com/pstadler
if [ $commands[kubectl] ]; then
source <(kubectl completion zsh)
fi