diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Base/_arguments | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Base/_arguments b/Completion/Base/_arguments index 1a5fd10f5..fb28438e2 100644 --- a/Completion/Base/_arguments +++ b/Completion/Base/_arguments @@ -260,8 +260,8 @@ if (( $# )) && comparguments -i "$autod" "$@"; then if [[ -z "$matched$mesg" ]] && _requested options && { ! zstyle -t ":completion:${curcontext}:options" prefix-needed || - [[ "$origpre" = [-+]* || - ( -z "$aret$mesg" && nm -eq compstate[nmatches] ) ]] } ; then + [[ ( "$origpre" = [-+]* || -z "$aret$mesg" ) && + nm -eq compstate[nmatches] ]] } ; then local prevpre="$PREFIX" previpre="$IPREFIX" PREFIX="$origpre" |