Is it possible to paste in insert mode in vim?

link|improve this question

feedback

6 Answers

up vote 60 down vote accepted

While in insert mode hit CTRL-R {register}. For example, CTRL-R * will insert in the contents of the clipboard and CTRL-R " (the unnamed register) inserts the the last delete or yank.

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

link|improve this answer
2  
Yep, I only recently learned of CTRL-R and it's extremely useful. – Dan May 20 '10 at 16:36
1  
CTRL-R * only works in GVIM or versions that are compiled to interact with x. Type vim --version and look for +xterm_clipboard. If you don't have that, you need a different version of vim. (vim.wikia.com/wiki/Accessing_the_system_clipboard) – Conrad.Dean Sep 26 '11 at 5:11
You actually only need +clipboard, but if you have +xterm_clipboard you should have that anyway. On some OSs xterm_clipboard isn't applicable. – Andrew Marshall Mar 13 at 2:42
feedback

If you don't want Vim to mangle formatting in incoming pasted text, you might also want to consider using: :set paste This will prevent vim from re-tabbing your code.

It's also possible to toggle the mode with a single key, by adding something like set pastetoggle=<F2> to your .vimrc. More details on toggling auto-indent here.

link|improve this answer
How do i turn off the :set paste? – Tiago May 26 '11 at 13:58
3  
:set nopaste will disable paste mode – James Snyder Jun 15 '11 at 22:50
oh nice, thanks that worked. – Tech4Wilco Sep 7 '11 at 13:08
feedback

No not directly. What you can do though is quickly enter insert mode for a single normal mode operation with Ctrl-O and then paste from there which will end by putting you back in insert mode.

Key Combo: Ctrl-O p

EDIT: Interesting. It does appear that there is a way as several other people have listed.

link|improve this answer
This should have more votes imo. – Philip K Apr 22 at 21:56
feedback

If you set vim to use the system clipboard (:set clipboard=unnamed), then any text you copy in vim can be pasted using Shift+Insert. Shift+Insert is simply an OS-wide paste key-combo (Ctrl+insert is the corresponding 'copy')

link|improve this answer
1  
Didn't know about S-Insert :) – BandGap Jan 13 at 17:19
feedback

Yes. In Windows Ctrl+V and in Linux pressing both mouse buttons nearly simultaneously.

In Windows I think this line in my _vimrc probably does it:

source $VIMRUNTIME/mswin.vim

In Linux I don't remember how I did it. It looks like I probably deleted some line from the default .vimrc file.

link|improve this answer
feedback

You can also use mouse middle button to paste in insert mode.

link|improve this answer
2  
What is this mouse you speak of? – jcm Feb 7 at 15:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.