gorbit99 / codewindow.nvim

MIT License
442 stars 17 forks source link

Search and diagnostic highlighting #27

Open kovasap opened 2 years ago

kovasap commented 2 years ago

Is there a plan to add search and diagnostic highlighting to this plugin? I'm thinking like https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-map.md.

gorbit99 commented 2 years ago

Diagnostic highlighting probably won't happen, there is already support for small marks for errors and warnings, trying to highlight actual errors is both futile and noisy because of the fact that you need to highlight 4 lines worth of minimap.

Search (and actually, visual mode) highlighting is something I was thinking about already. They aren't too hard to implement and they should be clean enough (because of the fact that most of the time they aren't shown)

kovasap commented 2 years ago

Sounds good, happy that you are already thinking about search!