summaryrefslogtreecommitdiff
path: root/Completion/Base/_arguments
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-12 14:36:46 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-12 14:36:46 +0000
commita6ed22c58590da9faaaf9d9a46cf1050c2bb74d1 (patch)
tree9e50624eba9abe1074865dd5c990edcaa69153ee /Completion/Base/_arguments
parent56caa787a6660d5a5aa7531b1fe773332900d77d (diff)
downloadzsh-a6ed22c58590da9faaaf9d9a46cf1050c2bb74d1.tar.gz
zsh-a6ed22c58590da9faaaf9d9a46cf1050c2bb74d1.zip
fix for completing options with `_arguments -s'; fix for _message to use `builtin compadd' (11349)
Diffstat (limited to 'Completion/Base/_arguments')
-rw-r--r--Completion/Base/_arguments10
1 files changed, 7 insertions, 3 deletions
diff --git a/Completion/Base/_arguments b/Completion/Base/_arguments
index e12dca47d..453e3d3e2 100644
--- a/Completion/Base/_arguments
+++ b/Completion/Base/_arguments
@@ -184,12 +184,16 @@ if (( $# )) && comparguments "$multi[@]" "$autod" "$@"; then
else
noargs='no arguments'
fi
- if ! comparguments -O next direct odirect equal; then
+ if comparguments -O next direct odirect equal; then
+ opts=yes
+ _tags options
+ elif [[ $? -eq 2 ]]; then
+ compadd -Q - "${PREFIX}${SUFFIX}"
+ return 0
+ else
_message "$noargs"
return 1
fi
- opts=yes
- _tags options
fi
context=()