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
......@@ -18,17 +18,13 @@ _composer () {
local curcontext="$curcontext" state line
typeset -A opt_args
_arguments \
'1: :->command'\
'*: :->args'
'*:: :->subcmds'
case $state in
command)
if (( CURRENT == 1 )) || ( ((CURRENT == 2)) && [ "$words[1]" = "global" ] ) ; then
compadd $(_composer_get_command_list)
;;
*)
else
compadd $(_composer_get_required_list)
;;
esac
fi
}
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