mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00: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'
 |