Warm tip: This article is reproduced from stackoverflow.com, please click
vim

Paste in insert mode?

发布于 2020-04-13 09:32:00

Is it possible to paste in insert mode in Vim?

Questioner
Amir Rachum
Viewed
61
1,587 2018-02-01 10:20

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