We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eceabd commit 93649deCopy full SHA for 93649de
docs/extras/coding/luasnip.md
@@ -107,7 +107,9 @@ opts = {}
107
opts = function()
108
LazyVim.cmp.actions.snippet_forward = function()
109
if require("luasnip").jumpable(1) then
110
- require("luasnip").jump(1)
+ vim.schedule(function()
111
+ require("luasnip").jump(1)
112
+ end)
113
return true
114
end
115
@@ -131,7 +133,9 @@ end
131
133
132
134
135
136
137
138
139
140
141
0 commit comments