Skip to content

Commit b796abc

Browse files
committed
feat: lazy handler implies opt=true
1 parent 54526e0 commit b796abc

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
- [x] rename requires to dependencies
4242
- [x] move tasks etc to Plugin.state
4343
- [ ] allow setting up plugins through config
44-
- [ ] handlers imply opt
44+
- [x] handlers imply opt
4545
- [x] dependencies imply opt for deps
4646
- [x] fix local plugin spec
4747
- [ ] investigate all opt=true. Simplifies logic (easily switch between opt/start afterwards)

lua/lazy/core/plugin.lua

+9-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ local Config = require("lazy.core.config")
22
local Util = require("lazy.core.util")
33
local Module = require("lazy.core.module")
44
local Cache = require("lazy.core.cache")
5+
local Handler = require("lazy.core.handler")
56

67
local M = {}
78

@@ -163,7 +164,6 @@ end
163164
function M.merge(old, new)
164165
local is_dep = old.dep and new.dep
165166

166-
local Handler = require("lazy.core.handler")
167167
---@diagnostic disable-next-line: no-unknown
168168
for k, v in pairs(new) do
169169
if k == "dep" then
@@ -205,7 +205,14 @@ function M.update_state(opts)
205205
plugin._ = plugin._ or {}
206206
plugin[1] = plugin["1"] or plugin[1]
207207
if plugin.opt == nil then
208-
plugin.opt = plugin.dep or Config.options.opt
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
209216
end
210217
local opt = plugin.opt and "opt" or "start"
211218
plugin.dir = Config.options.packpath .. "/" .. opt .. "/" .. plugin.name

tests/core/plugin_spec.lua

+9
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@ describe("plugin spec opt", function()
6363
assert(spec.plugins.dep1.opt == false)
6464
end)
6565

66+
it("handles opt from dep", function()
67+
Config.options.opt = false
68+
local spec = Plugin.Spec.new({ "foo/bar", module = "foo" })
69+
Plugin.update_state({ plugins = spec.plugins })
70+
assert.same(1, vim.tbl_count(spec.plugins))
71+
assert(spec.plugins.bar.dep ~= true)
72+
assert(spec.plugins.bar.opt == true)
73+
end)
74+
6675
it("merges lazy loaders", function()
6776
local tests = {
6877
{ { "foo/bar", module = "mod1" }, { "foo/bar", module = "mod2" } },

0 commit comments

Comments
 (0)