Skip to content

Commit baaf8dd

Browse files
committed
fix(spec): when overriding a spec by name that has not been imported yet, show an error when needed
1 parent f95d97a commit baaf8dd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lua/lazy/core/plugin.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ end
5757
function Spec:add(plugin, results, is_dep)
5858
-- check if we already processed this spec. Can happen when a user uses the same instance of a spec in multiple specs
5959
-- see https://github.com/folke/lazy.nvim/issues/45
60-
if plugin._ then
60+
if rawget(plugin, "_") then
6161
if results then
6262
table.insert(results, plugin.name)
6363
end
@@ -119,6 +119,9 @@ function Spec:add(plugin, results, is_dep)
119119
plugin.dependencies = plugin.dependencies and self:normalize(plugin.dependencies, {}, true) or nil
120120
if self.plugins[plugin.name] then
121121
plugin = self:merge(self.plugins[plugin.name], plugin)
122+
elseif is_ref then
123+
self:error("Plugin spec for **" .. plugin.name .. "** not found.\n```lua\n" .. vim.inspect(plugin) .. "\n```")
124+
return
122125
end
123126
self.plugins[plugin.name] = plugin
124127
if results then

0 commit comments

Comments
 (0)