fix: path wasn't registered in lua command
This commit is contained in:
parent
3fb8dee0f3
commit
96f15a3e35
|
@ -6,8 +6,8 @@ local debounce = require("lf.debounce")
|
|||
|
||||
api.nvim_create_user_command(
|
||||
"Lf",
|
||||
function(fargs)
|
||||
require("lf").start(fargs)
|
||||
function(tbl)
|
||||
require("lf").start(tbl.args)
|
||||
end,
|
||||
{nargs = "*", complete = "file"}
|
||||
)
|
||||
|
|
Reference in New Issue