range-highlight.nvim
range-highlight.nvim copied to clipboard
Relative range selection query
Using a range selection like :-15,-10
I expected to have the lines starting 15 lines above my cursor, to 10 lines above my cursor highlighted.
However, I actually get the line 15 above, plus another 10 behind that; as if it's doing the sum -15 - -10
so I get 10 lines instead of 5.
Is that the expected behaviour?
Hi thank you for reporting. This is a bug I suppose, and I think it is the reverse range logic messing up there.
@benfrain It seems like the bug would occurs whenever the relative range are both negative. Good catch and I will try to fix it when I have time.