first selection #1670
Unanswered
niksingh710
asked this question in
Q&A
first selection
#1670
Replies: 2 comments 15 replies
-
Had the same issue. Setting |
Beta Was this translation helpful? Give feedback.
6 replies
-
There was an issue for cmp.setup({
preselect = cmp.PreselectMode.None,
completion = {
completeopt = 'menu,menuone,noselect',
},
}) If you want to avoid LSP preselect but stil want the vim preselect feature, you can set your cmp.setup({
preselect = cmp.PreselectMode.None,
completion = {
completeopt = 'menu,menuone,preview',
},
}) |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
for some reason if i type my cmp highlights the selection in the middle of the list.
what i want is that it should not select any of the entry by default at all and if i press control l it should just select the top completion or if i manully scroll any entry the pressing control l selects that
Beta Was this translation helpful? Give feedback.
All reactions