fix(root): pass args to root.get

This commit is contained in:
Folke Lemaitre 2025-01-20 20:21:01 +01:00
parent 2bea40c447
commit dc8512fce1
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -1,8 +1,8 @@
---@class lazyvim.util.root ---@class lazyvim.util.root
---@overload fun(): string ---@overload fun(): string
local M = setmetatable({}, { local M = setmetatable({}, {
__call = function(m) __call = function(m, ...)
return m.get() return m.get(...)
end, end,
}) })