0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Fix: "\s" is a gawk-specific regexp operator.

This commit is contained in:
Oleg Voronkovich 2015-02-15 19:12:51 +03:00
parent 5ee54032da
commit 8b5950b812

View file

@ -7,7 +7,7 @@
# Composer basic command completion
_composer_get_command_list () {
$_comp_command1 --no-ansi | sed "1,/Available commands/d" | awk '/^\s*[a-z]+/ { print $1 }'
$_comp_command1 --no-ansi | sed "1,/Available commands/d" | awk '/^[ \t]*[a-z]+/ { print $1 }'
}
_composer_get_required_list () {