Is there any way to insert a space in normal mode?

vim

Solution

:nnoremap space i<space><esc>

Then, any time you type space in normal mode, it'll insert a space at the cursor.

Or you could just hit iSpaceEsc.

OK, OK. If you really want to use the space bar in normal, add `<>` to the above.

:nnoremap <space> i<space><esc>

Problem

I'm just starting to use vim. I would like to know if there is a simple default key binding that will allow me to add a space in normal mode. If not what is the next best alternative?

Original source

Related problems