fix: load_standalone accepts path, not paths

This commit is contained in:
tkinaba
2026-04-15 11:06:26 -03:00
parent 87350db15c
commit e8e9a34567
+1 -1
View File
@@ -59,7 +59,7 @@ local function setup()
local snippet_path = get_snippet_path() local snippet_path = get_snippet_path()
if snippet_path then if snippet_path then
require("luasnip.loaders.from_vscode").load_standalone({ require("luasnip.loaders.from_vscode").load_standalone({
paths = { snippet_path }, path = snippet_path,
}) })
end end
end end