Skip to content

Commit ce3e1fc

Browse files
committed
fix(plugin): only get plugin from spec when needed.
1 parent 9893430 commit ce3e1fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/core/plugin.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ function M.find(path)
301301
local slash = name:reverse():find("/", 1, true)
302302
if slash then
303303
name = name:sub(#name - slash + 2)
304-
return name and Config.spec.plugins[name] or nil
304+
return name and Config.plugins[name] or Config.spec.plugins[name] or nil
305305
end
306306
end
307307
end

0 commit comments

Comments
 (0)