-
Is there an option like Because cmp's <c-n> and <c-p> conflict with the plugin's keys. So I want to cancel the autocompletion of cmp when the plugin's status = true . |
Beta Was this translation helpful? Give feedback.
Answered by
mg979
Mar 29, 2022
Replies: 2 comments
-
You can check In lua you can just check |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
askfiy
-
Thank you very much |
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
You can check
if exists('b:visual_multi')
to see if you are in multiple cursors mode.In lua you can just check
if vim.b.visual_multi then ...