You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
split_selection works not as I would expect if the split sequence is found at the beginning of the selection.
Reproduction Steps
I tried this:
hx
create file content abcccccccabccccccab
select entire word [abcccccccabccccccab] (areas denoted by [] are selected)
Split by subsequence "ab" (Sab<enter>)
I expected this to happen:
Only the "c"-sequences should be selected, like this: ab[ccccccc]ab[cccccc]ab
Instead, this happened:
Selection includes one single character at the very start [a]b[ccccccc]ab[cccccc]ab. However, note that the splitting worked as I would expect at the tail of the selection.