Files

24 lines
657 B
Lua
Raw Permalink Normal View History

2025-11-20 13:21:22 +08:00
return {
2026-01-19 10:24:34 +08:00
{
"saghen/blink.cmp",
opts = {
keymap = {
preset = "enter",
["<CR>"] = { "fallback" },
["<Tab>"] = {
function(cmp)
if cmp.snippet_active() then
return cmp.accept()
else
return cmp.select_and_accept()
end
end,
"snippet_forward",
"fallback",
},
["<S-Tab>"] = { "snippet_backward", "fallback" },
},
2025-11-20 13:21:22 +08:00
},
},
}