about summary refs log tree commit diff
path: root/Completion/Core/_setup
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/_setup
parent6c3be64e8d3e746f1fd2c9a5a9fe2a28d9a44573 (diff)
downloadzsh-c98420666ca530f3d1128f5eba4e4ea87f6d942c.tar.gz
zsh-c98420666ca530f3d1128f5eba4e4ea87f6d942c.tar.xz
zsh-c98420666ca530f3d1128f5eba4e4ea87f6d942c.zip
zsh-workers/9733
Diffstat (limited to 'Completion/Core/_setup')
-rw-r--r--Completion/Core/_setup10
1 files changed, 7 insertions, 3 deletions
diff --git a/Completion/Core/_setup b/Completion/Core/_setup
index 4c45cc271..408b5abfe 100644
--- a/Completion/Core/_setup
+++ b/Completion/Core/_setup
@@ -9,9 +9,13 @@ if zstyle -a ":completion:${curcontext}:$1" list-colors val; then
   else
     eval "ZLS_COLORS=\"(${1})\${(j.:(${1}).)\${(@)val:gs/:/\\\:}}:\${ZLS_COLORS}\""
   fi
-elif [[ "$1" = default && -n "$ZLS_COLORS$ZLS_COLOURS" ]]; then
-  zmodload -i zsh/complist
-  ZLS_COLORS="$ZLS_COLORS$ZLS_COLOURS"
+
+# Here is the problem mentioned in _main_complete.
+
+# elif [[ "$1" = default && -n "$ZLS_COLORS$ZLS_COLOURS" ]]; then
+#   zmodload -i zsh/complist
+#   ZLS_COLORS="$ZLS_COLORS$ZLS_COLOURS"
+
 fi
 
 if zstyle -s ":completion:${curcontext}:$1" list-packed val; then