diff options
author | Leonid Volnitsky <Leonid@Volnitsky.com> | 2009-04-15 19:45:18 +0300 |
---|---|---|
committer | Leonid Volnitsky <Leonid@Volnitsky.com> | 2009-04-15 19:45:18 +0300 |
commit | a6382ff311c836f2b11e82e1b8284db59ce84eed (patch) | |
tree | 578df542b8cf5c00fe0965ce882718d693cdada7 /git-prompt.sh | |
parent | exit code now deisplayed at left-most position; fixed: extranious spase removed (diff) | |
download | git-prompt-a6382ff311c836f2b11e82e1b8284db59ce84eed.tar.gz git-prompt-a6382ff311c836f2b11e82e1b8284db59ce84eed.tar.bz2 git-prompt-a6382ff311c836f2b11e82e1b8284db59ce84eed.zip |
fixed: not bash prompt escapes around bell
Diffstat (limited to 'git-prompt.sh')
-rw-r--r-- | git-prompt.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-prompt.sh b/git-prompt.sh index 96824a1..b14d5c6 100644 --- a/git-prompt.sh +++ b/git-prompt.sh @@ -99,7 +99,7 @@ on='' off=': ' - bell=`eval ${!error_bell} tput bel` + bell="\[`eval ${!error_bell} tput bel`\]" colors_reset='\['`tput sgr0`'\]' |