mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Yii basic command completion
 | 
						|
 | 
						|
_yii_get_command_list () {
 | 
						|
	protected/yiic | awk '/^ - [a-z]+/ { print $2 }'
 | 
						|
}
 | 
						|
 | 
						|
_yii () {
 | 
						|
  if [ -f protected/yiic ]; then
 | 
						|
    compadd `_yii_get_command_list`
 | 
						|
  fi
 | 
						|
}
 | 
						|
 | 
						|
compdef _yii protected/yiic
 | 
						|
compdef _yii yiic
 | 
						|
 | 
						|
# Aliases
 | 
						|
alias yiic='protected/yiic'
 |