Skip to content

Commit e2e10d9

Browse files
committed
feat: find local_spec in parent directories as well. Closes #1519
1 parent 6944b10 commit e2e10d9

File tree

1 file changed

+35
-9
lines changed

1 file changed

+35
-9
lines changed

lua/lazy/core/plugin.lua

+35-9
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ function Spec:import(spec)
403403
---@type string[]
404404
local modnames = {}
405405

406-
if spec.import == M.LOCAL_SPEC then
406+
if spec.import:find(M.LOCAL_SPEC, 1, true) then
407407
modnames = { spec.import }
408408
else
409409
Util.lsmod(spec.import, function(modname)
@@ -414,15 +414,19 @@ function Spec:import(spec)
414414

415415
for _, modname in ipairs(modnames) do
416416
imported = imported + 1
417-
Util.track({ import = modname })
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 })
418422
self.importing = modname
419423
-- unload the module so we get a clean slate
420424
---@diagnostic disable-next-line: no-unknown
421425
package.loaded[modname] = nil
422426
Util.try(function()
423427
local mod = nil
424-
if modname == M.LOCAL_SPEC then
425-
mod = M.local_spec()
428+
if modname:find(M.LOCAL_SPEC, 1, true) then
429+
mod = M.local_spec(modname)
426430
else
427431
mod = require(modname)
428432
end
@@ -546,26 +550,48 @@ function M.update_state()
546550
end
547551
end
548552

549-
function M.local_spec()
550-
local filepath = vim.fn.fnamemodify(".lazy.lua", ":p")
551-
local file = vim.secure.read(filepath)
553+
---@param path string
554+
function M.local_spec(path)
555+
local file = vim.secure.read(path)
552556
if file then
553557
return loadstring(file)()
554558
end
555559
return {}
556560
end
557561

562+
---@return string?
563+
function M.find_local_spec()
564+
if not Config.options.local_spec then
565+
return
566+
end
567+
local path = vim.uv.cwd()
568+
while path ~= "" do
569+
local file = path .. "/" .. M.LOCAL_SPEC
570+
if vim.fn.filereadable(file) == 1 then
571+
return file
572+
end
573+
local p = vim.fn.fnamemodify(path, ":h")
574+
if p == path then
575+
break
576+
end
577+
path = p
578+
end
579+
end
580+
558581
function M.load()
559582
M.loading = true
560583
-- load specs
561584
Util.track("spec")
562585
Config.spec = Spec.new()
586+
587+
local local_spec = M.find_local_spec()
588+
563589
Config.spec:parse({
564590
vim.deepcopy(Config.options.spec),
565591
{
566-
import = ".lazy.lua",
592+
import = local_spec or M.LOCAL_SPEC,
567593
cond = function()
568-
return Config.options.local_spec and vim.fn.filereadable(M.LOCAL_SPEC) == 1
594+
return local_spec ~= nil
569595
end,
570596
},
571597
{ "folke/lazy.nvim" },

0 commit comments

Comments
 (0)