diff options
author | Bilal Amarni <bilal.amarni@gmail.com> | 2015-12-06 13:56:10 +0100 |
---|---|---|
committer | Bilal Amarni <bilal.amarni@gmail.com> | 2015-12-06 13:56:10 +0100 |
commit | 0d45e771c8d3d1f7c465be465fcbdb4169141347 (patch) | |
tree | b75c709c9878940e047725f14fdcba211f3cf222 | |
parent | ee343814b799cc44b84d8999d5cb444159815bac (diff) | |
download | zsh-0d45e771c8d3d1f7c465be465fcbdb4169141347.tar.gz zsh-0d45e771c8d3d1f7c465be465fcbdb4169141347.tar.bz2 zsh-0d45e771c8d3d1f7c465be465fcbdb4169141347.zip |
[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 () { |