snailed
/
taolf
Archived
2
0
Fork 0

fix: path wasn't registered in lua command

This commit is contained in:
Lucas Burns 2022-04-14 15:12:06 -05:00
parent 3fb8dee0f3
commit 96f15a3e35
No known key found for this signature in database
GPG Key ID: C011CBEF6628B679
1 changed files with 2 additions and 2 deletions

View File

@ -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"}
)