Allow for disabled by default #1439
Closed
nduvalhall
started this conversation in
General
Replies: 1 comment 4 replies
-
Yes, what you want is to use keymap = {
["<C-y>"] = { "select_and_accept" },
["<C-e>"] = { "hide", "show", "fallback" },
},
completion = {
menu = {
auto_show = function(ctx)
return ctx.mode ~= "default"
end,
},
}, |
Beta Was this translation helpful? Give feedback.
4 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.
-
Feature Description
I would like to be able to have auto complete turned off by default so that I can enable it with a keymap when I want it. Is this already existing? I've tried a few things but can't get it to work!
Beta Was this translation helpful? Give feedback.
All reactions