From 268ce32d6949faa6120709259e309a544e09ed79 Mon Sep 17 00:00:00 2001 From: Manuel Hoffmann Date: Sun, 4 Oct 2015 17:24:47 +0200 Subject: [PATCH] I took a look at this answer http://unix.stackexchange.com/a/90876 and thus added the %{%}-delimiters around the `prompt_line_sep` whitespace. Works for me and fixes #80 --- bullet-train.zsh-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bullet-train.zsh-theme b/bullet-train.zsh-theme index 3b9b3fa..79a7125 100644 --- a/bullet-train.zsh-theme +++ b/bullet-train.zsh-theme @@ -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 } # ------------------------------------------------------------------------------