Keep composer autocompletion when using global command

This commit is contained in:
Thomas Ruiz 2017-03-03 16:57:46 +01:00
parent b908feebcf
commit 26553bf448
No known key found for this signature in database
GPG Key ID: 2301E3424FE6CAE0

View File

@ -15,20 +15,16 @@ _composer_get_required_list () {
} }
_composer () { _composer () {
local curcontext="$curcontext" state line local curcontext="$curcontext" state line
typeset -A opt_args typeset -A opt_args
_arguments \ _arguments \
'1: :->command'\ '*:: :->subcmds'
'*: :->args'
case $state in if (( CURRENT == 1 )) || ( ((CURRENT == 2)) && [ "$words[1]" = "global" ] ) ; then
command) compadd $(_composer_get_command_list)
compadd $(_composer_get_command_list) else
;; compadd $(_composer_get_required_list)
*) fi
compadd $(_composer_get_required_list)
;;
esac
} }
compdef _composer composer compdef _composer composer