Closed ideasman42 closed 3 years ago
A line consisting of:
123 | ___^|
123 |
___^|
Will manipulate the 123 when the cursor is at the last blank space.
This is caused by forward-char not stepping forward since it's at the end of the line.
forward-char
A line consisting of:
123 |
___^|
Will manipulate the 123 when the cursor is at the last blank space.
This is caused by
forward-char
not stepping forward since it's at the end of the line.