mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-01 10:50:00 +08:00
8 lines
183 B
Bash
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
|