Skip to content

Commit 62a47b9

Browse files
committed
fix(loader): no need to check plugin.dir in auto_load
1 parent 9bcbbc1 commit 62a47b9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

lua/lazy/core/loader.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ end
525525

526526
function M.auto_load(modname, modpath)
527527
local plugin = Plugin.find(modpath, { fast = not M.did_handlers })
528-
if plugin and modpath:find(plugin.dir, 1, true) == 1 then
528+
if plugin then
529529
plugin._.rtp_loaded = true
530530
-- don't load if:
531531
-- * handlers haven't been setup yet

lua/lazy/pkg/init.lua

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local Config = require("lazy.core.config")
2-
local Util = require("lazy.util")
2+
local Util = require("lazy.core.util")
33

44
local M = {}
55
M.VERSION = 10
@@ -71,9 +71,10 @@ function M.update()
7171
table.sort(ret.pkgs, function(a, b)
7272
return a.name < b.name
7373
end)
74-
local code = "return " .. Util.dump(ret)
74+
local U = require("lazy.util")
75+
local code = "return " .. U.dump(ret)
7576
vim.fn.mkdir(vim.fn.fnamemodify(Config.options.pkg.cache, ":h"), "p")
76-
Util.write_file(Config.options.pkg.cache, code)
77+
U.write_file(Config.options.pkg.cache, code)
7778
M.dirty = false
7879
M.cache = nil
7980
end

0 commit comments

Comments
 (0)