I would like to break a line (at the location of the cursor) in to two lines without leaving normal mode (entering insert or command-line mode). Is this possible?
I curr
Try this:
:nnoremap <NL> i<CR><ESC>
then just press Ctrl-J whenever you want to split a line.
Similar to other answers but doesn't replace the current character.
R<enter>
No remaps required.