Unverified Commit 864b4416 authored by Thomas Ruiz's avatar Thomas Ruiz Committed by GitHub
Browse files

composer: keep composer autocompletion when using global (#5933)

parent 6f85dc23
...@@ -15,20 +15,16 @@ _composer_get_required_list () { ...@@ -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'
if (( CURRENT == 1 )) || ( ((CURRENT == 2)) && [ "$words[1]" = "global" ] ) ; then
case $state in compadd $(_composer_get_command_list)
command) else
compadd $(_composer_get_command_list) compadd $(_composer_get_required_list)
;; fi
*)
compadd $(_composer_get_required_list)
;;
esac
} }
compdef _composer composer compdef _composer composer
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment