Skip to content

Commit 923e1aa

Browse files
committed
fix(plugin): local spec name
1 parent 6fdd904 commit 923e1aa

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

lua/lazy/core/plugin.lua

+1-10
Original file line numberDiff line numberDiff line change
@@ -275,15 +275,6 @@ function M.update_rocks_state()
275275
end
276276
end
277277

278-
---@param path string
279-
function M.local_spec(path)
280-
local file = vim.secure.read(path)
281-
if file then
282-
return loadstring(file)()
283-
end
284-
return {}
285-
end
286-
287278
---@return LazySpecImport?
288279
function M.find_local_spec()
289280
if not Config.options.local_spec then
@@ -298,7 +289,7 @@ function M.find_local_spec()
298289
import = function()
299290
local data = vim.secure.read(file)
300291
if data then
301-
return loadstring(data)()
292+
return loadstring(data, M.LOCAL_SPEC)()
302293
end
303294
return {}
304295
end,

0 commit comments

Comments
 (0)