Skip to content

Commit 812bb3c

Browse files
committed
perf: dont loop over handlers to determine if a plugin should be opt=true
1 parent ba8b472 commit 812bb3c

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

lua/lazy/core/plugin.lua

+7-8
Original file line numberDiff line numberDiff line change
@@ -205,14 +205,13 @@ function M.update_state(opts)
205205
plugin._ = plugin._ or {}
206206
plugin[1] = plugin["1"] or plugin[1]
207207
if plugin.opt == nil then
208-
local has_handler = false
209-
for handler, _ in pairs(Handler.handlers) do
210-
if plugin[handler] then
211-
has_handler = true
212-
break
213-
end
214-
end
215-
plugin.opt = plugin.dep or has_handler or Config.options.opt
208+
plugin.opt = plugin.dep
209+
or Config.options.opt
210+
or plugin.module
211+
or plugin.event
212+
or plugin.keys
213+
or plugin.ft
214+
or plugin.cmd
216215
end
217216
local opt = plugin.opt and "opt" or "start"
218217
plugin.dir = Config.options.packpath .. "/" .. opt .. "/" .. plugin.name

0 commit comments

Comments
 (0)