Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
864b4416
Unverified
Commit
864b4416
authored
Feb 28, 2020
by
Thomas Ruiz
Committed by
GitHub
Feb 28, 2020
Browse files
composer: keep composer autocompletion when using global (#5933)
parent
6f85dc23
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/composer/composer.plugin.zsh
View file @
864b4416
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment