and thus added the %{%}-delimiters around the `prompt_line_sep` whitespace.
Works for me and fixes #80
This commit is contained in:
Manuel Hoffmann
2015-10-04 17:24:47 +02:00
parent fc426bad45
commit 268ce32d69

View File

@@ -473,7 +473,7 @@ prompt_char() {
prompt_line_sep() {
if [[ $BULLETTRAIN_PROMPT_SEPARATE_LINE == true ]]; then
# newline wont print without a non newline character, so add a zero-width space
echo -e '\n\u200B'
echo -e '\n%{\u200B%}'
fi
}
# ------------------------------------------------------------------------------