Allow completion for 'composer.phar', not only 'composer'

Use $_comp_command1 for command list generation instead of 'composer':

  `$_comp_command1` contains the command written in the command line.
  This allows us to have a different composer name
This commit is contained in:
Andrey Janzen 2013-07-26 00:37:11 +07:00 committed by Marc Cornellà
parent 0cc3afe277
commit 5f4e8e57da

View File

@ -7,11 +7,11 @@
# Composer basic command completion
_composer_get_command_list () {
composer --no-ansi | sed "1,/Available commands/d" | awk '/^\s*[a-z]+/ { print $1 }'
$_comp_command1 --no-ansi | sed "1,/Available commands/d" | awk '/^\s*[a-z]+/ { print $1 }'
}
_composer_get_required_list () {
composer show -s --no-ansi | sed '1,/requires/d' | awk 'NF > 0 && !/^requires \(dev\)/{ print $1 }'
$_comp_command1 show -s --no-ansi | sed '1,/requires/d' | awk 'NF > 0 && !/^requires \(dev\)/{ print $1 }'
}
_composer () {
@ -35,6 +35,7 @@ _composer () {
}
compdef _composer composer
compdef _composer composer.phar
# Aliases
alias c='composer'