Skip to content

Commit be5dfba

Browse files
committed
fix(plugin): better way of dealing with local specs. Fixes #1524
1 parent 4c6479e commit be5dfba

File tree

2 files changed

+44
-37
lines changed

2 files changed

+44
-37
lines changed

lua/lazy/core/plugin.lua

+42-36
Original file line numberDiff line numberDiff line change
@@ -383,10 +383,18 @@ function Spec:import(spec)
383383
if spec.import == "lazy" then
384384
return self:error("You can't name your plugins module `lazy`.")
385385
end
386-
if type(spec.import) ~= "string" then
386+
if type(spec.import) == "function" then
387+
if not spec.name then
388+
return self:error("Invalid import spec. Missing name: " .. vim.inspect(spec))
389+
end
390+
elseif type(spec.import) ~= "string" then
387391
return self:error("Invalid import spec. `import` should be a string: " .. vim.inspect(spec))
388392
end
389-
if vim.tbl_contains(self.modules, spec.import) then
393+
394+
local import_name = spec.name or spec.import
395+
---@cast import_name string
396+
397+
if vim.tbl_contains(self.modules, import_name) then
390398
return
391399
end
392400
if spec.cond == false or (type(spec.cond) == "function" and not spec.cond()) then
@@ -396,40 +404,34 @@ function Spec:import(spec)
396404
return
397405
end
398406

399-
self.modules[#self.modules + 1] = spec.import
407+
self.modules[#self.modules + 1] = import_name
408+
409+
local import = spec.import
400410

401411
local imported = 0
402412

403-
---@type string[]
404-
local modnames = {}
413+
---@type (string|(fun():LazyPluginSpec))[]
414+
local modspecs = {}
405415

406-
if spec.import:find(M.LOCAL_SPEC, 1, true) then
407-
modnames = { spec.import }
408-
else
409-
Util.lsmod(spec.import, function(modname)
410-
modnames[#modnames + 1] = modname
416+
if type(import) == "string" then
417+
Util.lsmod(import, function(modname)
418+
modspecs[#modspecs + 1] = modname
411419
end)
412-
table.sort(modnames)
420+
table.sort(modspecs)
421+
else
422+
modspecs = { spec.import }
413423
end
414424

415-
for _, modname in ipairs(modnames) do
425+
for _, modspec in ipairs(modspecs) do
416426
imported = imported + 1
417-
local name = modname
418-
if modname:find(M.LOCAL_SPEC, 1, true) then
419-
name = vim.fn.fnamemodify(modname, ":~:.")
420-
end
421-
Util.track({ import = name })
427+
local modname = type(modspec) == "string" and modspec or import_name
428+
Util.track({ import = modname })
422429
self.importing = modname
423430
-- unload the module so we get a clean slate
424431
---@diagnostic disable-next-line: no-unknown
425432
package.loaded[modname] = nil
426433
Util.try(function()
427-
local mod = nil
428-
if modname:find(M.LOCAL_SPEC, 1, true) then
429-
mod = M.local_spec(modname)
430-
else
431-
mod = require(modname)
432-
end
434+
local mod = type(modspec) == "function" and modspec() or require(modspec)
433435
if type(mod) ~= "table" then
434436
self.importing = nil
435437
return self:error(
@@ -559,7 +561,7 @@ function M.local_spec(path)
559561
return {}
560562
end
561563

562-
---@return string?
564+
---@return LazySpecImport?
563565
function M.find_local_spec()
564566
if not Config.options.local_spec then
565567
return
@@ -568,7 +570,16 @@ function M.find_local_spec()
568570
while path ~= "" do
569571
local file = path .. "/" .. M.LOCAL_SPEC
570572
if vim.fn.filereadable(file) == 1 then
571-
return file
573+
return {
574+
name = vim.fn.fnamemodify(file, ":~:."),
575+
import = function()
576+
local data = vim.secure.read(file)
577+
if data then
578+
return loadstring(data)()
579+
end
580+
return {}
581+
end,
582+
}
572583
end
573584
local p = vim.fn.fnamemodify(path, ":h")
574585
if p == path then
@@ -584,18 +595,13 @@ function M.load()
584595
Util.track("spec")
585596
Config.spec = Spec.new()
586597

587-
local local_spec = M.find_local_spec()
588-
589-
Config.spec:parse({
598+
local specs = {
590599
vim.deepcopy(Config.options.spec),
591-
{
592-
import = local_spec or M.LOCAL_SPEC,
593-
cond = function()
594-
return local_spec ~= nil
595-
end,
596-
},
597-
{ "folke/lazy.nvim" },
598-
})
600+
}
601+
specs[#specs + 1] = M.find_local_spec()
602+
specs[#specs + 1] = { "folke/lazy.nvim" }
603+
604+
Config.spec:parse(specs)
599605

600606
-- override some lazy props
601607
local lazy = Config.spec.plugins["lazy.nvim"]

lua/lazy/types.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
---@alias LazySpec string|LazyPluginSpec|LazySpecImport|LazySpec[]
7979

8080
---@class LazySpecImport
81-
---@field import string spec module to import
81+
---@field import string|(fun():LazyPluginSpec) spec module to import
82+
---@field name? string
8283
---@field enabled? boolean|(fun():boolean)
8384
---@field cond? boolean|(fun():boolean)

0 commit comments

Comments
 (0)