ohmyzsh/plugins/symfony2/symfony2.plugin.zsh

22 lines
475 B
Bash
Raw Normal View History

2011-12-17 23:23:31 +01:00
# Symfony2 basic command completion
_symfony2_get_command_list () {
app/console --no-ansi | sed "1,/Available commands/d" | awk '/^ [a-z]+/ { print $1 }'
}
_symfony2 () {
if [ -f app/console ]; then
compadd `_symfony2_get_command_list`
fi
}
2012-10-05 22:12:40 +02:00
compdef _symfony2 app/console
2012-07-29 02:32:11 +02:00
compdef _symfony2 sf
2012-10-05 22:12:40 +02:00
#Alias
alias sfc='php app/console'
alias sfcl='php app/console cache:clear'
alias sfcroute='php app/console router:debug'
alias sfcgb='php app/console generate:bundle'
2012-07-29 02:32:11 +02:00