mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
12 lines
235 B
Fish
12 lines
235 B
Fish
|
function __fisher_plugin_from_path -a path
|
||
|
for plugin in $fisher_cache/*
|
||
|
switch "$path"
|
||
|
case (readlink $plugin)
|
||
|
printf "%s\n" $plugin
|
||
|
return
|
||
|
end
|
||
|
end
|
||
|
|
||
|
return 1
|
||
|
end
|