We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba8b472 commit 812bb3cCopy full SHA for 812bb3c
lua/lazy/core/plugin.lua
@@ -205,14 +205,13 @@ function M.update_state(opts)
205
plugin._ = plugin._ or {}
206
plugin[1] = plugin["1"] or plugin[1]
207
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
215
- plugin.opt = plugin.dep or has_handler or Config.options.opt
+ plugin.opt = plugin.dep
+ or Config.options.opt
+ or plugin.module
+ or plugin.event
+ or plugin.keys
+ or plugin.ft
+ or plugin.cmd
216
end
217
local opt = plugin.opt and "opt" or "start"
218
plugin.dir = Config.options.packpath .. "/" .. opt .. "/" .. plugin.name
0 commit comments