-
Notifications
You must be signed in to change notification settings - Fork 39
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
Normal Mode unexpected cursor behavior #76
Comments
Wondering if anyone has looked at this, also experiencing this behavior with |
last commit was 2 years ago, i'm guessing if we want it fixed one of us is gonna have to fork it. do you happen to know vimscript? i can give it a try but i'll be starting from scratch knowledge-wise. |
I've recently stepped in to help maintain this plugin. This is something I've noticed myself and have been meaning to look into. That being said I will be traveling for a couple weeks and probably won't have time to find this before then. I'm just dropping a comment here to let you guys know there is some motion on this plugin again and any contributions would be welcome! If either of you found what is causing this I'd love to hear about it before I try to dig into it myself. And of course PR's will be getting reviewed if anybody has something to contribute. |
awesome, thanks for stepping up like that! I wouldn't be surprised if this behavior is an intentional feature, since it seems more intuitive for new vim users (i know i would always trip over the default vim behavior, i'd do something like anyways, i expect this is probably not a bug, just an annoying feature, so we should probably leave it enabled by default and just provide a way to turn it off, and mention it prominently in the docs |
@alice-sawatzky This is controlled by the plugin adding |
thanks, the autocommand approach didn't work (i don't know the nuances of autocmd timing so it's probably still possible), however, now that i had a name to work with, i skimmed through the plugin source and discovered i could disable it by disabling the "cursorwrap" feature. My setup for now if anyone wants to copy:
|
With pencil in the "soft" wrap mode, in normal mode I'm able to place the cursor after the last character in a line. This goes against the normal vim behavior, and breaks some workflows (pressing
$
and thenx
would normally delete the last character in a line, but now does nothing,append
andinsert
now do the same thing at the end of the line, etc.). Is this intended behavior? if so, can you provide a configuration option to disable it?The text was updated successfully, but these errors were encountered: