mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
6622210d7d
Closes #10939 Co-authored-by: Jorge Francisco Varela Gutiérrez <jvarela@jfvarela.redhat.com>
8 lines
187 B
Bash
8 lines
187 B
Bash
# Autocompletion for oc, the command line interface for OpenShift
|
|
#
|
|
# Author: https://github.com/kevinkirkup
|
|
|
|
if [ $commands[oc] ]; then
|
|
source <(oc completion zsh)
|
|
compdef _oc oc
|
|
fi
|