You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fisher/functions/__fisher_path_from_plugin.fish

17 lines
360 B
Fish

function __fisher_path_from_plugin -a plugin
switch "$plugin"
case /\*
__fisher_plugin_from_path $plugin
case \*/\*
__fisher_path_from_url $plugin
case \*
if test ! -d "$fisher_cache/$plugin"
return 1
end
printf "%s\n" $fisher_cache/$plugin
end
end