1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-30 14:24:16 +08:00
ohmyzsh/plugins/symfony2/symfony2.plugin.zsh

22 lines
476 B
Bash
Raw Normal View History

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