cmp-cmdline icon indicating copy to clipboard operation
cmp-cmdline copied to clipboard

The cmp view is not close when enter cmdwin.

Open gh-liu opened this issue 1 year ago • 1 comments

image

gh-liu avatar May 09 '23 07:05 gh-liu

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,
})

aldevv avatar Jun 09 '23 15:06 aldevv