diff --git a/functions/bobthefish_display_colors.fish b/functions/bobthefish_display_colors.fish index 2abb5ab..b889449 100644 --- a/functions/bobthefish_display_colors.fish +++ b/functions/bobthefish_display_colors.fish @@ -23,8 +23,16 @@ function bobthefish_display_colors -a color_scheme -d 'Print example prompt colo __bobthefish_colors $color_scheme case '' - [ -n "$theme_color_scheme" ] - and echo "$theme_color_scheme:" + if type -q bobthefish_colors + if [ -n "$theme_color_scheme" ] + echo "$theme_color_scheme (with bobthefish_colors overrides):" + else + echo 'custom (via bobthefish_colors):' + end + else if [ -n "$theme_color_scheme" ] + echo "$theme_color_scheme:" + end + __bobthefish_colors $theme_color_scheme type -q bobthefish_colors and bobthefish_colors