mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
Add new plugin listing decorator for symbolic links `|'.
This commit is contained in:
parent
0758a42cb6
commit
6247057d09
@ -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
|
||||
|
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user