How to Tab to cycle through suggestions? #565
-
Is there a way to use Tab for prev_next for suggestions, enter to accept it, but also use Tab to advance in snippets? Too convoluted maybe? |
Beta Was this translation helpful? Give feedback.
Answered by
georgeguimaraes
Dec 15, 2024
Replies: 1 comment
-
I got it the way I wanted: opts = {
keymap = {
preset = "enter",
["<Tab>"] = { "select_next", "snippet_forward", "fallback" },
["<S-Tab>"] = { "select_prev", "snippet_forwad", "fallback" },
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
georgeguimaraes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got it the way I wanted: