my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
284 B

3 years ago
  1. # Yii basic command completion
  2. _yii_get_command_list () {
  3. protected/yiic | awk '/^ - [a-z]+/ { print $2 }'
  4. }
  5. _yii () {
  6. if [ -f protected/yiic ]; then
  7. compadd `_yii_get_command_list`
  8. fi
  9. }
  10. compdef _yii protected/yiic
  11. compdef _yii yiic
  12. # Aliases
  13. alias yiic='protected/yiic'