[nvim] Change suggestion keymaps: C-space to suggest, C-enter to accept.

This commit is contained in:
2025-04-27 10:06:40 -07:00
parent a912dc5b54
commit 58665f6fcb

View File

@@ -0,0 +1,14 @@
return {
"saghen/blink.cmp",
opts = {
keymap = {
preset = "default",
["<C-space>"] = {
function(cmp)
cmp.show()
end,
},
["<C-enter>"] = { "select_and_accept" },
},
},
}