We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fdd904 commit 923e1aaCopy full SHA for 923e1aa
lua/lazy/core/plugin.lua
@@ -275,15 +275,6 @@ function M.update_rocks_state()
275
end
276
277
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
-
287
---@return LazySpecImport?
288
function M.find_local_spec()
289
if not Config.options.local_spec then
@@ -298,7 +289,7 @@ function M.find_local_spec()
298
import = function()
299
290
local data = vim.secure.read(file)
300
291
if data then
301
- return loadstring(data)()
292
+ return loadstring(data, M.LOCAL_SPEC)()
302
293
303
294
return {}
304
295
end,
0 commit comments