Jeremy Bobbin
Jeremy Bobbin
I'd consider this to be a feature. Taking your example, if you were to highlight `Hello "`, via `0vf"`, running `i"` would highlight everything up until the last `"`(equivalent to...
Thanks - I've addressed the newlines. I had to introduce `Selection *sel` in `selections_match_next` so that we could run `view_selections_flip` on it. I believe the distinction is useful since a...
You're probably right. It may be more confusing than before.
There's a coherence issue with `selection_new`, in that information is lost when going from a selection to a range. `selection_new` takes a range, and given `selection_new` is only called in...
Hi Tom, Thanks for your help; I really appreciate it. I meant to say `:x/9$/` In English for clarity: 1. Open a file(populated by `seq 100`) 2. select all lines...
I'm not too sure how I managed to solve it. I was trying to parse `lsblk` output on a 90-drive system. I wanted the paths of only the non-raided drives,...
I was thinking that the visibility of the cursor shouldn't affect cursor position, but one can scroll off-screen with `` & `` & it makes sense that a sluggish cursor...
Yep - I'm able to reproduce that; I'd roll it back.
c22b2c2 is correct. I believe the issue causing #1143 is here: https://github.com/martanne/vis/blob/a7aac1044856abc4d1f133c6563fc604d7fe6295/vis.c#L272-L282 It's saying "if neither the start nor end lines are within the view, don't highlight the selection". It...