Skip to content
Discussion options

You must be logged in to vote

This is how I implemented it, seems to be working well.

    vim.api.nvim_create_autocmd('User', {
      pattern = 'BlinkCmpCompletionMenuOpen',
      callback = function()
        vim.b.copilot_suggestion_hidden = true
      end,
    })

    vim.api.nvim_create_autocmd('User', {
      pattern = 'BlinkCmpCompletionMenuClose',
      callback = function()
        vim.b.copilot_suggestion_hidden = false
      end,
    })

Thanks for the amazing plugin @Saghen.

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@yngwi
Comment options

Comment options

You must be logged in to vote
1 reply
@yngwi
Comment options

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