1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00
Files
oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh
2016-08-14 17:30:55 -07:00

8 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