cmp-cmdline
cmp-cmdline copied to clipboard
The cmp view is not close when enter cmdwin.
happens to me too, I was able to fix it by adding this autocmd:
vim.api.nvim_create_autocmd("CmdWinEnter", {
callback = function()
require("cmp").close()
end,
})