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
Ohmyzsh
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 () {
...
@@ -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
...
...
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