mirror of https://github.com/folke/lazy.nvim.git
fix(plugin): local spec name
This commit is contained in:
parent
6fdd904ee4
commit
923e1aa7a4
|
@ -275,15 +275,6 @@ function M.update_rocks_state()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param path string
|
|
||||||
function M.local_spec(path)
|
|
||||||
local file = vim.secure.read(path)
|
|
||||||
if file then
|
|
||||||
return loadstring(file)()
|
|
||||||
end
|
|
||||||
return {}
|
|
||||||
end
|
|
||||||
|
|
||||||
---@return LazySpecImport?
|
---@return LazySpecImport?
|
||||||
function M.find_local_spec()
|
function M.find_local_spec()
|
||||||
if not Config.options.local_spec then
|
if not Config.options.local_spec then
|
||||||
|
@ -298,7 +289,7 @@ function M.find_local_spec()
|
||||||
import = function()
|
import = function()
|
||||||
local data = vim.secure.read(file)
|
local data = vim.secure.read(file)
|
||||||
if data then
|
if data then
|
||||||
return loadstring(data)()
|
return loadstring(data, M.LOCAL_SPEC)()
|
||||||
end
|
end
|
||||||
return {}
|
return {}
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in New Issue