Here's my PS1 variable:
PS1='u:W$(__git_ps1 "e[32m][%s]e[0m]")$ '
Works great for picking up my Git branch, but it has the unfortunate side-effect of wrapping the lines when the colours are active, so that they overlap when you use long commands.
Can anyone with magic PS1 skills help me out to fix this?
Got it, needed to escape the colours properly.
Fix:
PS1='u:W$(__git_ps1 "[e[32m][%s][e[0m]")$ '
2.1m questions
2.1m answers
60 comments
57.0k users