blink.cmp and LuaSnip configuration? #1245
Answered
by
soifou
evesdropper
asked this question in
Q&A
-
Has anyone gotten a blink.cmp and LuaSnip configuration that works for regex triggers/hidden snippets. Previously in cmp, my configuration was the following: ["<TAB>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif luasnip.expandable() then
luasnip.expand()
elseif luasnip.expand_or_locally_jumpable() then
luasnip.expand_or_jump()
elseif check_backspace() then
fallback()
else
fallback()
end
end, {
"i",
"s",
}), I thought |
Beta Was this translation helpful? Give feedback.
Answered by
soifou
Mar 2, 2025
Replies: 1 comment
-
You're right, it should be. This should now work as you expect in the latest version. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
evesdropper
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're right, it should be. This should now work as you expect in the latest version.