Is your feature request related something that is currently hard to do? Please describe.
The current available options for signcolumn are auto, yes, and no, all of whom have their annoyances:
no - doesn't allow to highlight lines at allyes - always takes space in vim even when no errors or warning as highlightedauto - makes text in vim "jump" when error or warning happensDescribe the solution you'd like
An extra option number that makes markers to be visible on top of numbers column. This solution has following advantages:
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
Recently Neovim added some thing similar. But instead of showing sign text in the number column, a sign option numhl was added to change the highlight of the number column. Similar to a sign only using linehl, such a sign doesn't need the sign column.
The patch is here https://github.com/neovim/neovim/pull/9113/files but is bit out of date due to the recent sign refactors. If this is interesting I could help porting it.
—