From 8072c65164bbcaa81f0c7a058f888e80b527cf58 Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Thu, 4 Feb 2016 14:01:41 +0900 Subject: [PATCH] Favor > for themes over | for symbolic links. --- functions/__fisher_list.fish | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions/__fisher_list.fish b/functions/__fisher_list.fish index c182bee..6ecca98 100644 --- a/functions/__fisher_list.fish +++ b/functions/__fisher_list.fish @@ -18,11 +18,11 @@ function __fisher_list -a source for i in (__fisher_cache_list) if contains -- $i $enabled - if test -L $fisher_cache/$i - printf "%s%s\n" "|" $i - - else if test $i = "$fisher_prompt" + if test $i = "$fisher_prompt" printf "%s%s\n" ">" $i + + else if test -L $fisher_cache/$i + printf "%s%s\n" "|" $i else printf "%s%s\n" "*" $i