From 20eb1f316600d36190d1bff62cb6acf0664fc920 Mon Sep 17 00:00:00 2001 From: Frank Terbeck Date: Thu, 28 Aug 2008 16:26:46 +0200 Subject: [PATCH] zshrc: A few changes for the sake of consistency + Use $'...' to manually define colors. + unset the newly introduced YELLOW and MAGENTA variables. No *real* code changes here. --- etc/zsh/zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 1914d39..45abfd1 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -1026,8 +1026,8 @@ else GREEN=$'%{\e[1;32m%}' CYAN=$'%{\e[1;36m%}' WHITE=$'%{\e[1;37m%}' - MAGENTA='%{\e[1;35m%}' - YELLOW='%{\e[1;33m%}' + MAGENTA=$'%{\e[1;35m%}' + YELLOW=$'%{\e[1;33m%}' NO_COLOUR=$'%{\e[0m%}' fi @@ -2334,7 +2334,7 @@ bk() { # }}} # {{{ make sure our environment is clean regarding colors -for color in BLUE RED GREEN CYAN WHITE ; unset $color +for color in BLUE RED GREEN CYAN YELLOW MAGENTA WHITE ; unset $color # }}} # source another config file if present {{{ -- 2.1.4