Browse Source

Fix get command list for recent composer versions

Julien Pepy 10 years ago
parent
commit
0cc3afe277
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/composer/composer.plugin.zsh

+ 1 - 1
plugins/composer/composer.plugin.zsh

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