diff options
author | Marc Cornellà <marc.cornella@live.com> | 2015-12-14 11:25:43 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2015-12-14 11:25:43 +0100 |
commit | 6a8692da7cc6654538e6fbfad9e494eac977936c (patch) | |
tree | eb9ee44f030526529e894a08277de600a53c37ac | |
parent | 4108c4895fa781f22c8b5b9f4d4352bc10ac23c9 (diff) | |
parent | 0d45e771c8d3d1f7c465be465fcbdb4169141347 (diff) | |
download | zsh-6a8692da7cc6654538e6fbfad9e494eac977936c.tar.gz zsh-6a8692da7cc6654538e6fbfad9e494eac977936c.tar.bz2 zsh-6a8692da7cc6654538e6fbfad9e494eac977936c.zip |
Merge pull request #4676 from bamarni/composer-stderr
[Composer] redirect stderr to /dev/null for completion commands
-rw-r--r-- | plugins/composer/composer.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/composer/composer.plugin.zsh b/plugins/composer/composer.plugin.zsh index 86f5be3d0..07eb1de88 100644 --- a/plugins/composer/composer.plugin.zsh +++ b/plugins/composer/composer.plugin.zsh @@ -7,11 +7,11 @@ # Composer basic command completion _composer_get_command_list () { - $_comp_command1 --no-ansi | sed "1,/Available commands/d" | awk '/^[ \t]*[a-z]+/ { print $1 }' + $_comp_command1 --no-ansi 2>/dev/null | sed "1,/Available commands/d" | awk '/^[ \t]*[a-z]+/ { print $1 }' } _composer_get_required_list () { - $_comp_command1 show -s --no-ansi | sed '1,/requires/d' | awk 'NF > 0 && !/^requires \(dev\)/{ print $1 }' + $_comp_command1 show -s --no-ansi 2>/dev/null | sed '1,/requires/d' | awk 'NF > 0 && !/^requires \(dev\)/{ print $1 }' } _composer () { |