Skip to content

Commit ad7aafb

Browse files
committed
fix(spec): don't import specs more than once
1 parent 9fa62ea commit ad7aafb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lua/lazy/core/plugin.lua

+4
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,9 @@ function Spec:import(spec)
225225
if spec.import == "lazy" then
226226
return self:error("You can't name your plugins module `lazy`.")
227227
end
228+
if vim.tbl_contains(self.modules, spec.import) then
229+
return
230+
end
228231
if spec.enabled == false or (type(spec.enabled) == "function" and not spec.enabled()) then
229232
return
230233
end
@@ -278,6 +281,7 @@ function Spec:merge(old, new)
278281
end
279282
new._.super = old
280283
setmetatable(new, { __index = old })
284+
281285
return new
282286
end
283287

0 commit comments

Comments
 (0)