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
Per this duplicate question: How do I insert a linebreak where the cursor is without entering into insert mode in Vim?
From within vim, type:
:map g i[Ctrl+V][Enter][Ctrl+V][Esc][Enter]
This maps the G key to macro I [Enter] [Escape]