about summary refs log tree commit diff
path: root/Completion/Base
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-08-02 10:36:19 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-08-02 10:36:19 +0000
commitb2aebcad027eab3339677eb790bfa41b37c3aef0 (patch)
tree7fcd90dfce5bd5101274de338796f719fd0d89a3 /Completion/Base
parenteabfc368bd798b92f6b878430464b79de77c463f (diff)
downloadzsh-b2aebcad027eab3339677eb790bfa41b37c3aef0.tar.gz
zsh-b2aebcad027eab3339677eb790bfa41b37c3aef0.tar.xz
zsh-b2aebcad027eab3339677eb790bfa41b37c3aef0.zip
if compcontext is an assoc, the keys are the completions and the values are their descriptions (12483)
Diffstat (limited to 'Completion/Base')
-rw-r--r--Completion/Base/_arguments2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Base/_arguments b/Completion/Base/_arguments
index 5a8da45ab..68a7ba848 100644
--- a/Completion/Base/_arguments
+++ b/Completion/Base/_arguments
@@ -78,7 +78,7 @@ if (( long )); then
 
       # Using (( ... )) gives a parse error.
 
-      let "$tmpargv[(I)(|\([^\)]#\))${opt}(|[-+=])(|\[*\])(|:*)]" ||
+      let "$tmpargv[(I)(|\([^\)]#\))(|\*)${opt}(|[-+=])(|\[*\])(|:*)]" ||
           tmp=( "$tmp[@]" "$opt" )
     done
     lopts=( "$tmp[@]" )