Fix zsh config inclusion
This commit is contained in:
		
							
								
								
									
										14
									
								
								zsh/.oh-my-zsh_old/plugins/yii/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								zsh/.oh-my-zsh_old/plugins/yii/README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| # Yii plugin | ||||
|  | ||||
| The plugin adds autocomplete commands and subcommands for [yii](https://www.yiiframework.com/). | ||||
|  | ||||
| To use it, add `yii` to the plugins array of your zshrc file: | ||||
| ``` | ||||
| plugins=(... yii) | ||||
| ``` | ||||
|  | ||||
| ## Aliases | ||||
|  | ||||
| | Alias  | Command              | | ||||
| |--------|----------------------| | ||||
| | yiic   | `protected/yiic`     | | ||||
							
								
								
									
										17
									
								
								zsh/.oh-my-zsh_old/plugins/yii/yii.plugin.zsh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								zsh/.oh-my-zsh_old/plugins/yii/yii.plugin.zsh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| # 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' | ||||
		Reference in New Issue
	
	Block a user