mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
fix(root): pass args to root.get
This commit is contained in:
parent
2bea40c447
commit
dc8512fce1
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue