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

View File

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