mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
8 lines
162 B
Fish
8 lines
162 B
Fish
|
function __fisher_list -d "List plugins in the cache"
|
||
|
for file in $fisher_cache/*
|
||
|
if test -d $file
|
||
|
basename $file
|
||
|
end
|
||
|
end
|
||
|
end
|