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