about summary refs log tree commit diff
path: root/Completion/Core/_main_complete
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-02-15 09:25:42 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-02-15 09:25:42 +0000
commitc98420666ca530f3d1128f5eba4e4ea87f6d942c (patch)
tree4680ac99aca7d9cb1a9b2b12f9faf0c4f3cf7b11 /Completion/Core/_main_complete
parent6c3be64e8d3e746f1fd2c9a5a9fe2a28d9a44573 (diff)
downloadzsh-c98420666ca530f3d1128f5eba4e4ea87f6d942c.tar.gz
zsh-c98420666ca530f3d1128f5eba4e4ea87f6d942c.tar.xz
zsh-c98420666ca530f3d1128f5eba4e4ea87f6d942c.zip
zsh-workers/9733
Diffstat (limited to 'Completion/Core/_main_complete')
-rw-r--r--Completion/Core/_main_complete9
1 files changed, 8 insertions, 1 deletions
diff --git a/Completion/Core/_main_complete b/Completion/Core/_main_complete
index 62ba446b0..3f71e2554 100644
--- a/Completion/Core/_main_complete
+++ b/Completion/Core/_main_complete
@@ -45,7 +45,14 @@ fi
 
 _setup default
 _def_menu_style=( "$_last_menu_style[@]"
-                  ${SELECTMIN+select${SELECTMIN:+\=$SELECTMIN}} )
+
+# We can't really do that because the current value of $SELECTMIN
+# may be the one set by this function.
+# There is a similar problem with $ZLS_COLORS in _setup.
+
+#                  ${SELECTMIN+select${SELECTMIN:+\=$SELECTMIN}}
+
+                )
 _last_menu_style=()
 
 # Get the names of the completers to use in the positional parameters.