mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Fixed command autocomplete for Symfony 2.6.x
This commit is contained in:
parent
43aa3783f8
commit
011f25d492
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ _symfony_console () {
|
|||
}
|
||||
|
||||
_symfony2_get_command_list () {
|
||||
`_symfony_console` --no-ansi | sed "1,/Available commands/d" | awk '/^ [a-z]+/ { print $1 }'
|
||||
`_symfony_console` --no-ansi | sed "1,/Available commands/d" | awk '/^ ?[a-z]+/ { print $1 }'
|
||||
}
|
||||
|
||||
_symfony2 () {
|
||||
|
|
Loading…
Reference in a new issue