We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey mate, I have read through the docs and tried out different variance but couldn't make it work
Remap <C-u> to jump down 4 times when there are matches Remap <C-i> to jump up 4 times when there are matches
<C-u>
<C-i>
Under KEYBIND.md <tab> -> if completion menu is open: select next item
<tab> -> if completion menu is open: select next item
Here's what I have tried. I have tried different key maps other than <C-u> and <C-i> but no luck
vim.api.nvim_set_keymap("i", "<C-u>", [[pumvisible() ? "\<C-n>\<C-n>\<C-n>\<C-n>" : "\<Tab>"]], { expr = true, silent = true }) vim.api.nvim_set_keymap("i", "<C-i>", [[pumvisible() ? "\<C-p>\<C-p>\<C-p>\<C-p>" : "\<BS>"]], { expr = true, silent = true })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey mate, I have read through the docs and tried out different variance but couldn't make it work
Desire action
Remap
<C-u>
to jump down 4 times when there are matchesRemap
<C-i>
to jump up 4 times when there are matchesDocumentation section
Under KEYBIND.md
<tab> -> if completion menu is open: select next item
Attempts
Here's what I have tried. I have tried different key maps other than
<C-u>
and<C-i>
but no luckThe text was updated successfully, but these errors were encountered: