0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/symfony2/symfony2.plugin.zsh

26 lines
656 B
Bash
Raw Normal View History

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