-
The current configuration is as follows(Partial code): {
"saghen/blink.cmp",
opts = {
keymap = {
preset = "enter",
["<Tab>"] = {
LazyVim.cmp.map({ "snippet_forward", "ai_accept" }),
"fallback",
},
},
},
}
I want to disable the |
Beta Was this translation helpful? Give feedback.
Answered by
Saghen
Nov 12, 2024
Replies: 1 comment 1 reply
-
I've just pushed a change that will ignore any keymap with no commands so you could do: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gengdz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've just pushed a change that will ignore any keymap with no commands so you could do:
['<C-e>'] = {}
. If you're not running on main, you could temporarily do['<C-e>'] = { 'fallback' }
which effectively does the same thing