Add new plugin listing decorator for symbolic links `|'.

This commit is contained in:
Jorge Bucaran 2016-02-04 13:53:21 +09:00
parent 85bbcccd27
commit 952ac794b1
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30
2 changed files with 6 additions and 2 deletions

View file

@ -18,8 +18,12 @@ function __fisher_list -a source
for i in (__fisher_cache_list)
if contains -- $i $enabled
if test $i = "$fisher_prompt"
if test -L $fisher_cache/$i
printf "%s%s\n" "|" $i
else if test $i = "$fisher_prompt"
printf "%s%s\n" ">" $i
else
printf "%s%s\n" "*" $i
end

View file

@ -1,6 +1,6 @@
set -l manifest $DIRNAME/fixtures/manifest
set -l plugins foo bar baz norf zerg quux hoge foobar fred thud chomp
set -l plugins foo bar baz norf zerg quux hoge foobar fred thud chomp boo loo
test "$TESTNAME - Parse fishfile and retrieve plugin names with fisher --list=fishfile"