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 () { ...@@ -18,17 +18,13 @@ _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) compadd $(_composer_get_required_list)
;; fi
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