Adding a symfony plugin, for symfony 1

This commit is contained in:
Graham Christensen 2012-07-23 23:33:14 -04:00
parent d05b2010ff
commit 61e708f91f
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# symfony basic command completion
_symfony_get_command_list () {
./symfony | sed "1,/Available tasks/d" | awk 'BEGIN { cat=null; } /^[A-Za-z]+$/ { cat = $1; } /^ :[a-z]+/ { print cat $1; }'
}
_symfony () {
if [ -f symfony ]; then
compadd `_symfony_get_command_list`
fi
}
compdef _symfony symfony