remove tabs and change readme title

This commit is contained in:
nojhan 2012-08-14 14:12:33 +02:00
parent aa0f725b99
commit 8e3d2fe0c8
2 changed files with 6 additions and 6 deletions

View File

@ -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.

View File

@ -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