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

13 lines
283 B
Bash
Raw Normal View History

2011-12-17 22:23:31 +00:00
# Symfony2 basic command completion
_symfony2_get_command_list () {
app/console --no-ansi | sed "1,/Available commands/d" | awk '/^ [a-z]+/ { print $1 }'
}
_symfony2 () {
if [ -f app/console ]; then
compadd `_symfony2_get_command_list`
fi
}
compdef _symfony2 app/console