Paste in insert mode?

vim

Solution

While in insert mode hit `CTRL-R {register}`

Examples:

- `CTRL-R *` will insert in the contents of the clipboard

- `CTRL-R "` (the unnamed register) inserts the last delete or yank.

To find this in vim's help type `:h i_ctrl-r`

Problem

Is it possible to paste in insert mode in Vim?

Original source