vim: Add ctrl-m binding (equivalent to <CR>) (#14057)

Now that we have macros I noticed how much I rely on this.

Release Notes:

- vim: `ctrl-m` now is equivalent to `enter` in editor.
This commit is contained in:
Thorsten Ball 2024-07-10 16:31:54 +02:00 committed by GitHub
parent f147722fe0
commit 7ef64fe6db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,6 +17,7 @@
"j": "vim::Down",
"down": "vim::Down",
"enter": "vim::NextLineStart",
"ctrl-m": "vim::NextLineStart",
"tab": "vim::Tab",
"shift-tab": "vim::Tab",
"k": "vim::Up",