Replies: 2 comments
-
@nnathan, you can refer to |
Beta Was this translation helpful? Give feedback.
0 replies
-
I wanted to achieve the same and got it working by binding the following keys: keymap = {
preset = "none",
["<TAB>"] = { "select_next", "fallback" },
["<S-TAB>"] = { "select_prev", "fallback" },
["<CR>"] = { "accept", "fallback" },
} And eventually set the completion preselection to false: completion = {
list = {
selection = {
preselect = false,
},
},
} See Completion List This will work for auto-completion, but not for snippets (this is why I have the Does anyone have a solution for this? |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm migrating from nvim-cmp (via kickstart) to blink.
It all sounds good, but I'm having some niggly issues with using tab to autocomplete. When completing paths or other items where there is only one completion, I want tab to always accept the completion on first go. Not cycle between selecting and not selecting, is this possible?
Beta Was this translation helpful? Give feedback.
All reactions