diff --git a/README.md b/README.md index c832e9d..d5dd3e5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -Liquid prompt -- A useful adaptive Bash prompt -============================================== +Liquid prompt -- A useful adaptive Bash & Zsh prompt +==================================================== Liquid prompt is a smart prompt for the "Bourne-Again" Unix shell (bash) and for Zsh. diff --git a/liquidprompt b/liquidprompt index cfa3296..0e6e802 100755 --- a/liquidprompt +++ b/liquidprompt @@ -46,20 +46,20 @@ if test -n "$BASH_VERSION" -a -n "$PS1" -a -n "$TERM" ; then fi unset bash bmajor bminor - _LP_WORKING_SHELL=bash + _LP_WORKING_SHELL=bash _LP_OPEN_ESC="\[" _LP_CLOSE_ESC="\]" _LP_USER_SYMBOL="\u" _LP_HOST_SYMBOL="\h" elif test -n "$ZSH_VERSION" ; then - _LP_WORKING_SHELL=zsh + _LP_WORKING_SHELL=zsh _LP_OPEN_ESC="%{" _LP_CLOSE_ESC="%}" _LP_USER_SYMBOL="%n" _LP_HOST_SYMBOL="%m" else - echo "liquidprompt: shell not supported" >&2 - return + echo "liquidprompt: shell not supported" >&2 + return fi