Fix some edge cases when nerd fonts are on and powerline fonts are explicitly disabled.

This commit is contained in:
Justin Hileman 2020-05-02 09:19:56 -07:00
parent e24516b39b
commit 870ab7c9be
2 changed files with 2 additions and 2 deletions

View File

@ -393,7 +393,7 @@ function __bobthefish_finish_segments -S -d 'Close open prompt segments'
if set -q theme_newline_prompt
echo -ens "$theme_newline_prompt"
else if [ "$theme_powerline_fonts" = "no" ]
else if [ "$theme_powerline_fonts" = "no" -a "$theme_nerd_fonts" != "yes" ]
echo -ns '> '
else
echo -ns "$right_arrow_glyph "

View File

@ -68,7 +68,7 @@ end
function fish_right_prompt -d 'bobthefish is all about the right prompt'
set -l __bobthefish_left_arrow_glyph \uE0B3
if [ "$theme_powerline_fonts" = "no" ]
if [ "$theme_powerline_fonts" = "no" -a "$theme_nerd_fonts" != "yes" ]
set __bobthefish_left_arrow_glyph '<'
end