Breno Pacheco

Results 1 comments of Breno Pacheco

For anyone looking for a quick fix, I was able to get this working with `windwp/nvim-autopairs` by adding the following: ```lua require('cmp').event:on('confirm_done', function(evt) if evt.entry.completion_item then require('nvim-autopairs.completion.cmp').on_confirm_done()(evt) vim.api.nvim_exec_autocmds('CompleteChanged', {}) end...