feat(pkg): import package specs in the scope of the plugin

This commit is contained in:
Folke Lemaitre 2024-06-22 22:18:47 +02:00
parent 75ffe56f70
commit c1912e2348
1 changed files with 5 additions and 1 deletions

View File

@ -86,7 +86,11 @@ end
function M.get_spec(plugin)
local pkg = M.get(plugin)
local spec = pkg and pkg.spec
return spec and type(spec) == "table" and vim.deepcopy(spec) or spec
if not spec then
return
end
spec = type(spec) == "table" and vim.deepcopy(spec) or spec
return { plugin.name, specs = spec }
end
return M