Reputation: 2169
How do I paste while in paste mode on vim
? This shouldn't be that hard to find but it isn't explained in any of the tutorials or wikis. I'm trying to paste a block of code while in PASTE MODE but I get an error every time I try. I have F10
mapped to paste toggle.
I tried F10p, to paste the unnamed register, but that didn't work.
F10a, to paste register a,
and F10CTRL-v, to paste the clipboard, and even that didn't work.
How do I paste in paste mode?
Upvotes: 0
Views: 215
Reputation: 36262
I use many times CTRL-SHIFT-v to paste content from the clipboard to vim
in insert mode with :set paste
instruction executed just before.
Upvotes: 3