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