Convert theme to use the already escaped colors introduced in 46b8d27815

pull/57/head
JFSIII 2011-06-18 10:57:59 -04:00
parent 65ce6fdb6f
commit 8b380c1914
1 changed files with 9 additions and 9 deletions

View File

@ -33,22 +33,22 @@
# COLORS ====================================================================== # COLORS ======================================================================
ORANGE='\[\e[0;33m\]' ORANGE='\[\e[0;33m\]'
DEFAULT_COLOR='\[${white}\]' DEFAULT_COLOR="${white}"
USER_COLOR='\[${purple}\]' USER_COLOR="${purple}"
SUPERUSER_COLOR='\[${red}\]' SUPERUSER_COLOR="${red}"
MACHINE_COLOR=$ORANGE MACHINE_COLOR=$ORANGE
IP_COLOR=$ORANGE IP_COLOR=$ORANGE
DIRECTORY_COLOR='\[${green}\]' DIRECTORY_COLOR="${green}"
VE_COLOR='\[${cyan}\]' VE_COLOR="${cyan}"
RVM_COLOR='\[${cyan}\]' RVM_COLOR="${cyan}"
REF_COLOR='\[${purple}\]' REF_COLOR="${purple}"
# SCM prompts # SCM prompts
SCM_THEME_PROMPT_DIRTY=' \[${bold_red}\]✗\[${normal}\]' SCM_THEME_PROMPT_DIRTY=" ${bold_red}${normal}"
SCM_THEME_PROMPT_CLEAN=' \[${bold_green}\]✓\[${normal}\]' SCM_THEME_PROMPT_CLEAN=" ${bold_green}${normal}"
SCM_THEME_PROMPT_PREFIX=' on ' SCM_THEME_PROMPT_PREFIX=' on '
SCM_THEME_PROMPT_SUFFIX='' SCM_THEME_PROMPT_SUFFIX=''