gorbit99 / codewindow.nvim

MIT License
427 stars 16 forks source link

Search and diagnostic highlighting #27

Open kovasap opened 1 year ago

kovasap commented 1 year 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 1 year 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 1 year ago

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