Disable <C-n>
+ <C-p>
#1695
-
Is it possible to disable these two keys? When I do something like local mapping = {
...
["<C-p>"] = cmp.config.disable,
["<C-n>"] = cmp.config.disable,
} it doesn't always work. Either |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
After disabling both keys, you need to define another keymap to handle |
Beta Was this translation helpful? Give feedback.
-
Okay, I figured that out. It was due to |
Beta Was this translation helpful? Give feedback.
Okay, I figured that out. It was due to
cmp.setup
being called two times (once inlsp-zero.extend_cmp
) and once in my config