oh-my-zsh/plugins/symfony2/symfony2.plugin.zsh

32 lines
826 B
Bash
Raw Normal View History

2011-12-17 22:23:31 +00:00
# Symfony2 basic command completion
2014-07-17 09:27:00 +00:00
_symfony_console () {
2014-09-03 09:36:22 +00:00
echo "php $(find . -maxdepth 2 -mindepth 1 -name 'console' -type f | head -n 1)"
2014-07-17 09:27:00 +00:00
}
2011-12-17 22:23:31 +00:00
_symfony2_get_command_list () {
`_symfony_console` --no-ansi | sed "1,/Available commands/d" | awk '/^ ?[^ ]+ / { print $1 }'
2011-12-17 22:23:31 +00:00
}
_symfony2 () {
2014-07-17 09:27:00 +00:00
compadd `_symfony2_get_command_list`
2011-12-17 22:23:31 +00:00
}
2014-07-17 09:27:00 +00:00
compdef _symfony2 '`_symfony_console`'
compdef _symfony2 'app/console'
compdef _symfony2 'bin/console'
2012-07-29 00:32:11 +00:00
compdef _symfony2 sf
2012-10-05 20:12:40 +00:00
#Alias
2014-07-17 09:27:00 +00:00
alias sf='`_symfony_console`'
alias sfcl='sf cache:clear'
2015-01-28 12:02:36 +00:00
alias sfsr='sf server:run -vvv'
2014-07-17 09:27:00 +00:00
alias sfcw='sf cache:warmup'
alias sfroute='sf debug:router'
alias sfcontainer='sf debug:container'
alias sfgb='sf generate:bundle'
alias sfge='sf doctrine:generate:entity'
alias sfsu='sf doctrine:schema:update'
alias sfdev='sf --env=dev'
alias sfprod='sf --env=prod'