Yin-Hsun Hung
Yin-Hsun Hung
You can change the `winhighlight` ```lua require("blink.cmp").setup({ completion = { menu = { winhighlight = "Normal:Normal,FloatBorder:Normal,CursorLine:Visual,Search:None", }, }, }) ```
I guess they already mapped the menu background to `Normal`. You can check these line https://github.com/ellisonleao/gruvbox.nvim/blob/main/lua/gruvbox.lua#L533-L564. If you don't want to change blink's config. You can [override these groups](https://github.com/ellisonleao/gruvbox.nvim?tab=readme-ov-file#highlight-groups)
I'm not the author. But I don't think it will have any update here. Because this a personal thing. Given the [default menu highlight group](https://github.com/Saghen/blink.cmp/blob/6d6b0092cfe570ade9b183cd53bb1a620290d02b/doc/configuration/appearance.md?plain=1#L12) is `Pmenu`. And you don't...
Hi, @brendanmaguire thank you for this. But I found another problem with your PR. When I select a item from menu, I need to press enter twice. Can you reproduce...