-
Make sure you have done the following
Bug DescriptionI use LazyVIM which brings blink.cmp. Relevant configuration{
"saghen/blink.cmp",
opts = function(_, opts)
opts.keymap = {
preset = "super-tab",
["<Enter>"] = {
function(cmp)
return cmp.accept()
end,
"snippet_forward",
"fallback",
}
}
return opts
end,
},
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
-
I think i made a mistake, select_and_accept and accept is not what i mean, it means select the first item then accept… |
Beta Was this translation helpful? Give feedback.
I think i made a mistake, select_and_accept and accept is not what i mean, it means select the first item then accept…
so what i really want to talk about is the insert mode and the replace mode.
so I have searched a lot, and found that the lsp config may control the insert/replace mode.
Rust lsp is replace mode and Lua lsp is insert mode……