mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 13:21:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Autocompletion for kn, the command line interface for knative
 | 
						|
#
 | 
						|
# Author: https://github.com/btannous
 | 
						|
 | 
						|
if [ $commands[kn] ]; then
 | 
						|
  source <(kn completion zsh)
 | 
						|
  compdef _kn kn
 | 
						|
fi
 |