Skip to content

Commit 93649de

Browse files
chore(build): auto-generate docs
1 parent 1eceabd commit 93649de

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/extras/coding/luasnip.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ opts = {}
107107
opts = function()
108108
LazyVim.cmp.actions.snippet_forward = function()
109109
if require("luasnip").jumpable(1) then
110-
require("luasnip").jump(1)
110+
vim.schedule(function()
111+
require("luasnip").jump(1)
112+
end)
111113
return true
112114
end
113115
end
@@ -131,7 +133,9 @@ end
131133
opts = function()
132134
LazyVim.cmp.actions.snippet_forward = function()
133135
if require("luasnip").jumpable(1) then
134-
require("luasnip").jump(1)
136+
vim.schedule(function()
137+
require("luasnip").jump(1)
138+
end)
135139
return true
136140
end
137141
end

0 commit comments

Comments
 (0)