mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-03 06:36:34 +00:00
fix(meta): when a plugin is both optional and disabled, then just delete it from the list
This commit is contained in:
parent
7c493713bc
commit
805b85c2ea
1 changed files with 5 additions and 1 deletions
|
@ -305,7 +305,11 @@ function M:fix_disabled()
|
|||
for _, plugin in pairs(self.plugins) do
|
||||
if plugin.enabled == false or (type(plugin.enabled) == "function" and not plugin.enabled()) then
|
||||
changes = changes + 1
|
||||
self:disable(plugin)
|
||||
if plugin.optional then
|
||||
self:del(plugin.name)
|
||||
else
|
||||
self:disable(plugin)
|
||||
end
|
||||
end
|
||||
end
|
||||
self:rebuild()
|
||||
|
|
Loading…
Add table
Reference in a new issue