-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"omap f <Plug>Sneak_f" does not include last char in buffer (using "co") #228
Comments
I wonder if #181 fixes this. |
Nope.. |
Yep, operators won't work properly if the target area extends to the very last column in the buffer, because we cannot "nudge" the cursor beyond the last column (to compensate the default "exclusive" interpretation of the motion). There are two solutions: 1. We can just tell the user to use the 'v' modifier, forcing inclusiveness ( |
good idea! not ideal because it changes the |
Given a minimal vimrc:
cfl
in a buffer that contains only one like "eval" will result inl
being left (and not changed/removed).This appears to be related for when it is at the end of the buffer, i.e. a newline after it will remove the "l" as expected.
The text was updated successfully, but these errors were encountered: