stevearc / dressing.nvim

Neovim plugin to improve the default vim.ui interfaces
MIT License
1.83k stars 32 forks source link

CursorLine highlight in builtin select overwritten ? #30

Closed fitrh closed 2 years ago

fitrh commented 2 years ago

20220329_234801_full

I'm using tokyonight.nvim colorschme, and it seems for builtin select window, the CursorLine overwritten in the text, is this expected ?

stevearc commented 2 years ago

It was a side effect of how I was applying some custom highlight groups. After investigating, that logic isn't necessary to customize the color of the text, and has several negative side effects (this being one of them). I've removed that logic and added a deprecation warning. CursorLine should display properly for you now.

fitrh commented 2 years ago

Thank you