Replies: 1 comment
-
For keys = {
{ 'somekey', function() vim.g.blink_cmp = not vim.g.blink_cmp end, desc = 'Toggle completions' }
},
opts = {
enabled = function() return vim.g.blink_cmp ~= false end
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to disable or toggle the blink.cmp completion using a keybind, but I couldn't find any relevant information in the documentation about how to do this. While there is an option to show and hide the completion menu with a keybind, it doesn't completely disable the feature, as the completion menu triggers again after a typing a char in same line or next line. I can use
vim.b.completion = false
but that causes the native completion for the neovim to stop as well.Beta Was this translation helpful? Give feedback.
All reactions