mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	Closes #10939 Co-authored-by: Jorge Francisco Varela Gutiérrez <jvarela@jfvarela.redhat.com>
		
			
				
	
	
		
			9 lines
		
	
	
		
			187 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 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
 |