Skip to content

Commit

Permalink
fix: support adding top-level lua directories
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Nov 22, 2022
1 parent fca984b commit 7288962
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lua/lazy/core/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ local function _add_module(dir, modname)
for _, entry in ipairs(entries) do
local path = dir .. "/" .. entry.name
if entry.type == "directory" then
_add_module(path, modname .. "." .. entry.name)
_add_module(path, modname and (modname .. "." .. entry.name) or entry.name)
else
local childname = entry.name:match("^(.*)%.lua$")
if childname then
local child = entry.name == "init.lua" and modname or (modname .. "." .. childname)
local child = entry.name == "init.lua" and modname or modname and (modname .. "." .. childname) or childname
if child then
M.add(child, path)
end
Expand All @@ -76,6 +76,9 @@ local function _add_module(dir, modname)
end

function M.add_module(path)
if path:find("/lua/?$") then
return _add_module(path)
end
---@type string
local modname = path:match("/lua/(.*)/?")
assert(modname)
Expand Down
4 changes: 4 additions & 0 deletions lua/lazy/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ function M.setup(opts)
-- rebuild state
local Plugin = require("lazy.plugin")
Module.add_module(vim.fn.stdpath("config") .. "/lua/" .. Config.options.plugins:gsub("%.", "/"))
-- Module.add_module(vim.fn.stdpath("config") .. "/lua")
-- Module.add_module(Config.options.package_path .. "/start/tokyonight.nvim/lua")
-- Module.add_module(Config.options.package_path .. "/opt/nvim-cmp/lua")
-- Module.add_module(Config.options.package_path .. "/opt/cmp-buffer/lua")
vim.schedule(function()
vim.notify("Reloading")
end)
Expand Down

0 comments on commit 7288962

Please sign in to comment.