You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
315 B
13 lines
315 B
# symfony basic command completion
|
|
|
|
_symfony_get_command_list () {
|
|
php 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
|