Practical Vim, 2nd Edition - Second Half
So, I promised I’ld mention what goodies I find in the second half of Practical Vim, 2nd Edition. Here they are. Chapter 10, Copy and Paste First, the repetition of the insert mode <C-r>{register} command later in the book was something I found useful. I think that’s a pretty handy way to paste the contents of a register. I never knew that "+ let’s you access the system clipboard either. If you put the two together, you can quickly paste from the system clipboard without leaving insert mode with <C-r>+. The fact that yank stores a copy of what it copies in the 0 register is pretty handy too. Nice to have an alternate way to access the last yank if I’ve clobbered it. ...