rename _lp_set_bash_prompt as _lp_set_prompt

This commit is contained in:
nojhan 2012-08-16 20:18:29 +02:00
parent 0e7d3bf2b8
commit 9051f3fb70

View File

@ -937,7 +937,7 @@ _lp_sb()
# Construct the prompt #
########################
_lp_set_bash_prompt()
_lp_set_prompt()
{
# as this get the last returned code, it should be called first
LP_ERR="${LP_COLOR_ERR}$(_lp_sl $(_lp_return_value $?))${NO_COL}"
@ -1015,10 +1015,10 @@ prompt_on()
fi
fi
if [[ "$_LP_WORKING_SHELL" == "bash" ]]; then
PROMPT_COMMAND=_lp_set_bash_prompt
PROMPT_COMMAND=_lp_set_prompt
elif [[ "$_LP_WORKING_SHELL" == "zsh" ]]; then
function precmd {
_lp_set_bash_prompt
_lp_set_prompt
}
fi