diff options
author | yleo77 <ylep77@gmail.com> | 2013-08-29 13:41:42 +0800 |
---|---|---|
committer | yleo77 <ylep77@gmail.com> | 2013-08-29 13:41:42 +0800 |
commit | fda5afaebca57250792696e29c2e111f41f6fce4 (patch) | |
tree | d52b970bcdec2eb59069081353b6b4d3af6f9893 /plugins/symfony | |
parent | 6041e4938cc559b908d83b5664166cc1fd02f31e (diff) | |
parent | 434f3bc05c5245d7a27ab0bb1ede5b78acc370a4 (diff) | |
download | zsh-fda5afaebca57250792696e29c2e111f41f6fce4.tar.gz zsh-fda5afaebca57250792696e29c2e111f41f6fce4.tar.bz2 zsh-fda5afaebca57250792696e29c2e111f41f6fce4.zip |
Merge remote-tracking branch 'robbyrussell/master'
Diffstat (limited to 'plugins/symfony')
-rw-r--r-- | plugins/symfony/symfony.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/symfony/symfony.plugin.zsh b/plugins/symfony/symfony.plugin.zsh index 9de767548..f070e9e47 100644 --- a/plugins/symfony/symfony.plugin.zsh +++ b/plugins/symfony/symfony.plugin.zsh @@ -1,7 +1,7 @@ # 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; }' + php symfony | sed "1,/Available tasks/d" | awk 'BEGIN { cat=null; } /^[A-Za-z]+$/ { cat = $1; } /^ :[a-z]+/ { print cat $1; }' } _symfony () { |