-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
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
add support for blink.cmp #477
Comments
@olivertzeng have you found a workaround/solution for autopair completion for blink, by chance? |
Unfortunately no. :( |
I have found this: Saghen/blink.cmp#157 Working fine for me |
what does the nvim-autopairs config need to look like to work with |
Blink's auto brackets option works fine for me so far (or maybe I just don't know the difference with nvim-autopairs), but maybe it can work with local cmp_autopairs = require("nvim-autopairs.completion.cmp")
require("blink-cmp").setup({
keymap = {
["<CR>"] = {
function(cmp)
return cmp.accept({
callback = cmp_autopairs.on_confirm_done
})
end
}
}
}) I had this on my nvim-cmp config before I switched to blink local cmp_autopairs = require("nvim-autopairs.completion.cmp")
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done()) |
Is your feature request related to a problem? Please describe.
https://github.com/Saghen/blink.cmp there is a brand new completion plugin called blink.cmp
Describe the solution you'd like
add support for it
Describe alternatives you've considered
No
Additional context
none
The text was updated successfully, but these errors were encountered: