XVim
XVim copied to clipboard
Replacing the last characters of a line works incorrectly.
Description
Select and replace last characters of a line works incorrectly. Instead of appending the register content after the last character, it inserts the characters before the last character.
Operation
Say we have a line of code like this:
int var;
- Copy `int' so we have something in the register
- Select
ar; - Hit key 'p'.
- The result becomes
int intv.
Expected behaviour
The replacement result should be int vint.
I believe this is a duplicate of #1047 (but better title)
Thanks for pointing out #1047. The nature of the problem is with the location of the selection in the line, not the content of the selection.
@lyxera yes that is true (see my comment on that issue). one of them should be closed.