diff options
author | 2014-12-19 20:36:59 -0800 | |
---|---|---|
committer | 2014-12-19 20:36:59 -0800 | |
commit | ef58d52de7c3c828e5fe9db4667dc1fd18f3b418 (patch) | |
tree | 827b7331c820b9ca6f2eecbf2f47a679f4efb3a5 /src/_binutils-config | |
parent | _portage: add etc-update support (diff) | |
download | zsh-completion-ef58d52de7c3c828e5fe9db4667dc1fd18f3b418.tar.gz zsh-completion-ef58d52de7c3c828e5fe9db4667dc1fd18f3b418.tar.bz2 zsh-completion-ef58d52de7c3c828e5fe9db4667dc1fd18f3b418.zip |
fix singular argument forcing
This allows multiples of the same option to be completed in certain
cases (increasing/decreasing verbosity for perl-cleaner) and fixes
several cases where arguments shouldn't stop additional arguments from
being completed.
Diffstat (limited to 'src/_binutils-config')
-rw-r--r-- | src/_binutils-config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/_binutils-config b/src/_binutils-config index 30064b3..1dd7bb9 100644 --- a/src/_binutils-config +++ b/src/_binutils-config @@ -5,8 +5,8 @@ local arguments arguments=( '(- :)'{--get-current-profile,-c}'[print current profile]' '(- :)'{--list-profiles,-l}'[print a list of available profiles]' - '(- :)'{--uninstall,-u}'[remove all signs of specified target]' - '(- :)'{--debug,-d}'[execute with debug output]' + {'(--uninstall)-u','(-u)--uninstall'}'[remove all signs of specified target]' + {'(--debug)-d','(-d)--debug'}'[execute with debug output]' '(- :)'{--help,-h}'[show help]' '(- :):profiles:_binutils_profiles' ) |