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
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.
The text was updated successfully, but these errors were encountered:
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;
ar;
int intv
.Expected behaviour
The replacement result should be
int vint
.The text was updated successfully, but these errors were encountered: