From: Amaury Gauthier Date: Sun, 29 Apr 2012 12:32:07 +0000 (+0200) Subject: Remove the color escape which mess up long command line in candy theme X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=30489e7775e436bcae1b9653a6365b2039170965;p=common%2Fbash_it.git Remove the color escape which mess up long command line in candy theme --- diff --git a/themes/candy/candy.theme.bash b/themes/candy/candy.theme.bash index e568964..77f8ff4 100644 --- a/themes/candy/candy.theme.bash +++ b/themes/candy/candy.theme.bash @@ -1,6 +1,6 @@ #!/usr/bin/env bash function prompt_command() { - PS1="${green}\u@\h ${blue}\T ${reset_color}${white}\w${reset_color}$(scm_prompt_info)\]${blue} →${bold_blue} ${reset_color} "; + PS1="${green}\u@\h ${blue}\T ${reset_color}${white}\w${reset_color}$(scm_prompt_info)${blue} →${bold_blue} ${reset_color} "; } PROMPT_COMMAND=prompt_command;