-
With the default map of <Tab>, if I press <Tab> first time when the menu popup, it selects and inserts next item. |
Beta Was this translation helpful? Give feedback.
Answered by
Saghen
Sep 2, 2025
Replies: 2 comments
-
I have this in my blink keyboard options and my tab behaves as you'd like. keymap = { preset = 'none', -- no preset/default keymap
['<Down>'] = { 'select_next', 'fallback' },
['<Up>'] = { 'select_prev', 'fallback'},
['<Tab>'] = { 'accept', 'fallback' },
}, |
Beta Was this translation helpful? Give feedback.
0 replies
-
cmdline = {
keymap = {
['<Tab>'] = { 'show_and_insert', 'select_next' }
-- or to match neovim cmdline behavior better
['<Tab>'] = { 'show_and_insert_or_accept_single', 'select_next' }
}
} By default, the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
zoumi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By default, the
cmdline.keymap.preset = 'cmdline'
includes this keymap, and that preset is used by default.