Removeing mappings and complete on <cr> #1520
johnallsup
started this conversation in
General
Replies: 1 comment
-
You can disable the autocomplete by setting cmp.setup({
completion = { autocomplete = false },
mapping = {
["<C-l>"] = cmp.mapping.complete(),
},
})
a) Use |
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
-
Completion is great, but one thing I'd like to do is to have function normally (i.e. not autocomplete) under any circumstances. I want to only use for this.
What is the correct way to configure nvim-cmp so that doesn't trigger completion?:wq
More generally, what is the correct way to a) temporarily remove a mapping; and b) permanently remove a mapping?
Beta Was this translation helpful? Give feedback.
All reactions