From a6ed22c58590da9faaaf9d9a46cf1050c2bb74d1 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Fri, 12 May 2000 14:36:46 +0000 Subject: fix for completing options with `_arguments -s'; fix for _message to use `builtin compadd' (11349) --- Completion/Base/_arguments | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'Completion/Base') 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=() -- cgit 1.4.1