Vim mode Control-D page down no longer works

Starting with v0.15.1 I noticed that Control-D in Vim mode deletes the character under the cursor instead of paging down. Anyone else experiencing this?

1 Like

Bug appears to be upstream in CodeMirror. Filed an issue here:

The problem can be duplicated in the online demo:
https://codemirror-vim--util.repl.co/

2 Likes

thanks

will be fixed 0.15.3

3 Likes

It’s not a proper fix, and it doesn’t help with Ctrl+Y that broke just as well, but as a temporary workaround you can add mappings like these to your Vimrc file (assuming you’re using the Vimrc plugin):

nmap <C-d> 20j
nmap <C-u> 20k

Is that nmap working for you in 15.x? Because that was the first thing I went to try and I can’t seem to get nmap to override the behavior.

Actually turns out it’s not, I just happened to get lucky on the first notes I tested it on :frowning:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.