mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
70 lines
2.0 KiB
Fish
70 lines
2.0 KiB
Fish
|
function fisher_list -a key -d "List installed plugins"
|
||
|
switch "$key"
|
||
|
case -b --bare
|
||
|
__fisher_cache_list
|
||
|
|
||
|
case ""
|
||
|
set -l enabled (fisher_list $fisher_file)
|
||
|
set -l cache (__fisher_cache_list)
|
||
|
|
||
|
if test -z "$cache"
|
||
|
return 1
|
||
|
end
|
||
|
|
||
|
set -l indent " "
|
||
|
|
||
|
if test -z "$enabled"
|
||
|
set indent ""
|
||
|
end
|
||
|
|
||
|
for i in $cache
|
||
|
if contains -- $i $enabled
|
||
|
if test $i = "$fisher_prompt"
|
||
|
printf "%s%s\n" ">$indent" $i
|
||
|
|
||
|
else if test -L $fisher_cache/$i
|
||
|
|
||
|
printf "%s%s\n" "@$indent" $i
|
||
|
|
||
|
else
|
||
|
printf "%s%s\n" "*$indent" $i
|
||
|
end
|
||
|
else
|
||
|
printf "%s%s\n" "$indent$indent" $i
|
||
|
end
|
||
|
end
|
||
|
|
||
|
case -l --link
|
||
|
find $fisher_cache/* -maxdepth 0 -type l ^ /dev/null | sed 's|.*/||'
|
||
|
|
||
|
case --enabled
|
||
|
fisher_list $fisher_file
|
||
|
|
||
|
case --disabled
|
||
|
set -l enabled (fisher_list $fisher_file)
|
||
|
|
||
|
for name in (__fisher_cache_list)
|
||
|
if not contains -- $name $enabled
|
||
|
printf "%s\n" $name
|
||
|
end
|
||
|
end
|
||
|
|
||
|
case -
|
||
|
__fisher_file | __fisher_name
|
||
|
|
||
|
case -h
|
||
|
printf "Usage: fisher list [<file>] [--enabled] [--disabled] [--bare] [--link] \n\n"
|
||
|
printf " -b --bare List plugin without decorators\n"
|
||
|
printf " -l --link List plugins that are symbolic links\n"
|
||
|
printf " --enabled List plugins that are enabled\n"
|
||
|
printf " --disabled List plugins that are disabled\n"
|
||
|
printf " -h --help Show usage help\n"
|
||
|
return
|
||
|
|
||
|
case \*
|
||
|
if test -s "$key"
|
||
|
fisher_list - < $key
|
||
|
end
|
||
|
end
|
||
|
end
|