mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 17:30:08 +00:00
composer: keep composer autocompletion when using global (#5933)
This commit is contained in:
parent
6f85dc2389
commit
864b441688
1 changed files with 9 additions and 13 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue