Skip to content
Discussion options

You must be logged in to vote

By manually I was refering to bind a keymap like:

keymap = {
   -- ...
   ['<C-e>'] = { 'hide', 'show', 'fallback' },
},

For your usecase, you could use an autocommand:

vim.api.nvim_create_autocmd('CmdlineEnter', {
  callback = vim.schedule_wrap(function() 
    require('blink.cmp').show() 
  end),
})

But again, IMO this behavior should be opt-in.

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@yyy33
Comment options

@yyy33
Comment options

@soifou
Comment options

soifou Jan 2, 2026
Collaborator

Answer selected by yyy33
@yyy33
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants