Is adding <CR> at the end of the line for normal mode mappings required for all mappings? #243
|
I just installed this plugin today and noticed the banner warning about needing to add <CR> at the end of the line for normal mode mappings. I've only just started setting this up, but from my testing it seems like it's only necessary to add <CR> after a command. i.e. So, is it just when mapping commands that need to be followed by <CR>? If so, is it all commands or is it specifically CodeMirror commands? (assuming it's related to the bug discussed in the readme). |
Answered by
esm7
Oct 18, 2024
Replies: 1 comment 1 reply
|
Similarly to "real" Vim, only Ex commands (everything that starts with |
1 reply
Answer selected by
BillyGallagher
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Similarly to "real" Vim, only Ex commands (everything that starts with
:) need the<CR>. I indeed see that the warning banner was not clear enough, thank you for pointing it out!