I often have to paste some stuff on a new line in vim. What I usually do is:
o<Esc>p
Which inserts a new line and puts me in insertion mode, than quits insertion mode, and finally pastes.
Three keystrokes. Not very efficient. Any better ideas?
|
|
Shortly after
Unfortunately it’s not shorter than your current solution unless you combined it with some keyboard map as suggested in a different answer. For instance, you can map it to any key (even
|
|||||||||||||||||
|
|
Options: 1) Use 2) Make a mapping: then it's only one or two keys:
3) The function version of the mapping (unnecessary really, but just for completeness):
|
|||||
|
|
You can paste a buffer in insert mode using
I found that I use
|
|||
|
|
|
Personally I've nmapped Enter like this:
Based on this page from Vim Wiki: http://vim.wikia.com/wiki/Insert_newline_without_entering_insert_mode In this way I make newlines directly from normal mode, and combining this with wanting to paste to a newline below I do:
You could also write in j into the nmap, depending on what functionality you prefer from Enter. I've also imapped jj to Esc, which would also assist in this case. Esc is way too far away from the home row for how significant it is in vim. Not shorter than the other solutions, but I do think it feels less clunky than some of the other solutions mentioned, and it has other advantages too. |
|||
|
|
|
If you're copying a whole line then pasting a whole line, use |
|||||
|