1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-30 15:02:18 +01:00

Initial revision

This commit is contained in:
Tanaka Akira 1999-12-03 16:43:20 +00:00
parent e1eeb93345
commit a9e41e408e

13
Completion/Core/_setup Normal file
View file

@ -0,0 +1,13 @@
#autoload
local colors i
for i; do
if _style -a "$i" list-colors colors; then
if [[ "$1" = default ]]; then
ZLS_COLORS="${(j.:.)${(@)colors:gs/:/\\\:}}"
else
eval "ZLS_COLORS=\"(${i})\${(j.:(${i}).)\${(@)colors:gs/:/\\\:}}:\${ZLS_COLORS}\""
fi
fi
done