diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-03-15 09:55:32 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-03-15 09:55:32 +0000 |
commit | d83665b7cfb2464f89d7eececcc21d68d9851e44 (patch) | |
tree | 92215c278eba2791ce8c575b3f110829e5ca92e0 /Src/Zle | |
parent | 2d442fff86d643cadd16315639f17644feb08f5e (diff) | |
download | zsh-d83665b7cfb2464f89d7eececcc21d68d9851e44.tar.gz zsh-d83665b7cfb2464f89d7eececcc21d68d9851e44.tar.xz zsh-d83665b7cfb2464f89d7eececcc21d68d9851e44.zip |
fix default colour for directories (3674)
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/complist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c index f0fc7c771..ffefb7fec 100644 --- a/Src/Zle/complist.c +++ b/Src/Zle/complist.c @@ -76,7 +76,7 @@ static char *colnames[] = { /* Default values. */ static char *defcols[] = { - "0", "0", "1;34", "1;36", "33", "1;35", "1;33", "1;33", "1;32", NULL, + "0", "0", "1;31", "1;36", "33", "1;35", "1;33", "1;33", "1;32", NULL, "\033[", "m", NULL, "0", "0", "7", "0", "0" }; |