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
blink.cmp
User's custom cmdline keymap are ignored after enabling cmdline completion for blink.
For example, if the users set <C-b> to act as <Left> in cmdline keymap, after enabling blink cmp, <C-b> no longer works.
<C-b>
<Left>
local keymap = vim.api.nvim_set_keymap keymap('c', '<C-b>', '<Left>', { noremap = true }) keymap('c', '<C-f>', '<Right>', { noremap = true }) require('blink-cmp').setup { keymap = { preset = 'super-tab', }, }
0.10
0.8.0
The text was updated successfully, but these errors were encountered:
fix: grab global mappings for fallback in cmdline mode
fde6d5f
Closes #674
92da013
Updated and it works now! Thanks!
Sorry, something went wrong.
No branches or pull requests
Make sure you have done the following
blink.cmp
Bug Description
User's custom cmdline keymap are ignored after enabling cmdline completion for blink.
For example, if the users set
<C-b>
to act as<Left>
in cmdline keymap, after enabling blink cmp,<C-b>
no longer works.Relevant configuration
neovim version
0.10
blink.cmp
version: branch, tag, or commit0.8.0
The text was updated successfully, but these errors were encountered: