Skip to content
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

Open
alice-sawatzky opened this issue Apr 23, 2019 · 6 comments
Open

Normal Mode unexpected cursor behavior #76

alice-sawatzky opened this issue Apr 23, 2019 · 6 comments
Labels

Comments

@alice-sawatzky
Copy link

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 then x would normally delete the last character in a line, but now does nothing, append and insert 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?

@MerkleBros
Copy link

Wondering if anyone has looked at this, also experiencing this behavior with x not deleting backwards.

@alice-sawatzky
Copy link
Author

alice-sawatzky commented Jul 3, 2019

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.

@alerque alerque added the bug label Nov 16, 2019
@alerque
Copy link
Member

alerque commented Nov 16, 2019

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.

@alice-sawatzky
Copy link
Author

alice-sawatzky commented Nov 18, 2019

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 $i and expect to be inserting at the end of the line, it took a while for me to get over that (IMO more vim tutorials should emphasize a earlier on))

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

@alerque
Copy link
Member

alerque commented Nov 26, 2019

@alice-sawatzky This is controlled by the plugin adding onemore to the virtualedit setting. You can read about its use in :help virtualedit. I'm sure you can manually kill this off yourself with -= in an auto command, but I think it would be nice to ⓐ document that this is an optional feature and ⓑ make it an option that can be disabled. On by default probably makes sense.

@alice-sawatzky
Copy link
Author

alice-sawatzky commented Dec 4, 2019

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:

let g:pencil#wrapModeDefault = 'soft'
let g:pencil#cursorwrap = 0 "<-----|this line|-----
augroup pencil
  autocmd!
  autocmd FileType markdown,mkd call pencil#init()
  autocmd FileType text         call pencil#init()
augroup END

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants