Skip to content

Commit 638c8e6

Browse files
committed
fix(plugin): rebuild plugins after fixing optional and cond to ensure enabled will work correctly
1 parent 28a8013 commit 638c8e6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lua/lazy/core/plugin.lua

+5
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,12 @@ function Spec:fix_disabled()
292292
end
293293

294294
self:fix_optional()
295+
-- rebuild any plugin specs that were modified
296+
for name, _ in pairs(self.dirty) do
297+
self:rebuild(name)
298+
end
295299
self:fix_cond()
300+
self.dirty = {}
296301

297302
for _, plugin in pairs(self.plugins) do
298303
local disabled = plugin.enabled == false or (type(plugin.enabled) == "function" and not plugin.enabled())

0 commit comments

Comments
 (0)