bugfix return code not computed, forgot to replace debug chars, more comments
This commit is contained in:
parent
78c7ca9c33
commit
c9e827cdb4
1 changed files with 11 additions and 8 deletions
17
prompt.bash
17
prompt.bash
|
|
@ -409,7 +409,7 @@ __smart_mark()
|
||||||
__sr()
|
__sr()
|
||||||
{
|
{
|
||||||
if [ ! -z "$1" ] ; then
|
if [ ! -z "$1" ] ; then
|
||||||
echo -n "$1<"
|
echo -n "$1 "
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -417,7 +417,7 @@ __sr()
|
||||||
__sl()
|
__sl()
|
||||||
{
|
{
|
||||||
if [ ! -z "$1" ] ; then
|
if [ ! -z "$1" ] ; then
|
||||||
echo -n ">$1"
|
echo -n " $1"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -425,7 +425,7 @@ __sl()
|
||||||
__sb()
|
__sb()
|
||||||
{
|
{
|
||||||
if [ ! -z "$1" ] ; then
|
if [ ! -z "$1" ] ; then
|
||||||
echo -n "=$1="
|
echo -n " $1 "
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -436,20 +436,23 @@ __sb()
|
||||||
|
|
||||||
__set_bash_prompt()
|
__set_bash_prompt()
|
||||||
{
|
{
|
||||||
# left of main prompt
|
# as this get the last returned code, it should be called first
|
||||||
|
__RET=$(__sl "`__return_value $?`")
|
||||||
|
|
||||||
|
# left of main prompt: space at right
|
||||||
__JOBS=$(__sr "`__jobcount_color`")
|
__JOBS=$(__sr "`__jobcount_color`")
|
||||||
__LOAD=$(__sr "`__load_color`")
|
__LOAD=$(__sr "`__load_color`")
|
||||||
__BATT=$(__sr "`__battery_color`")
|
__BATT=$(__sr "`__battery_color`")
|
||||||
|
|
||||||
# in main prompt
|
# in main prompt: no space
|
||||||
__HOST="`__host_color`"
|
__HOST="`__host_color`"
|
||||||
|
|
||||||
# right of main prompt
|
# right of main prompt: space at left
|
||||||
__GIT=$(__sl "`__git_branch_color`")
|
__GIT=$(__sl "`__git_branch_color`")
|
||||||
__HG=$(__sl "`__hg_branch_color`")
|
__HG=$(__sl "`__hg_branch_color`")
|
||||||
__SVN=$(__sl "`__svn_branch_color`")
|
__SVN=$(__sl "`__svn_branch_color`")
|
||||||
__RET=$(__sl "`__return_value $?`")
|
|
||||||
|
|
||||||
|
# end of the prompt line: double spaces
|
||||||
__MARK=$(__sb "`__smart_mark`")
|
__MARK=$(__sb "`__smart_mark`")
|
||||||
|
|
||||||
PS1="${__BATT}${__LOAD}${__JOBS}"
|
PS1="${__BATT}${__LOAD}${__JOBS}"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue