Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to paste in insert mode in vim?

share|improve this question

7 Answers

up vote 118 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

share|improve this answer
6  
Yep, I only recently learned of CTRL-R and it's extremely useful. – Dan May 20 '10 at 16:36
4  
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 '12 at 2:42
1  
Hmm, I use C-r+ to paste from system clipboard on Windows (using GVim portable)? Never heard of * register. – kitsu.eb Sep 8 '12 at 14:28
1  
@kitsu.eb On X systems * register is pastable with middle-mouse-click while + is the traditional copy/paste. standards.freedesktop.org/clipboards-spec/clipboards-latest.txt – Alex Moreno Feb 21 at 6:42

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.

share|improve this answer
How do i turn off the :set paste? – Tiago May 26 '11 at 13:58
8  
: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
@Tech4Wilco for the record, if you prepend no to any almost any setting it'll disable it: :set noexpandtab and :set expandtab are opposite of each other. – TankorSmash Oct 4 '12 at 4:23
3  
@JamesSnyder A better way is :set paste! Probably set paste is very close in your command history, so you can simply press ':', then arrow-up and add a '!'. – Rafael Barbosa Nov 30 '12 at 13:51
show 1 more comment

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.

share|improve this answer
2  
This should have more votes imo. – Philip K Apr 22 '12 at 21:56

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')

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

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

share|improve this answer
27  
What is this mouse you speak of? – jcm Feb 7 '12 at 15:43
1  
Dude, 12 übergeeks upvoted the previous comment. It took me almost 900ms to get it :) – Mehdi LAMRANI Jan 15 at 22:01
1  
But does this work on non-linux OSes? – franzlorenzon Feb 9 at 9:41

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.

share|improve this answer
Can I upvote more than once?? I only want to paste when I've come from another window - so I'm always on the mouse. Brilliant! – dave Aug 28 '12 at 9:35
In Linux you paste with pressing middle mouse button. If you have two button mouse and press both left and right button, then it needs "Emulate3Buttons" or similar to work this way. – Cougar Feb 5 at 11:51

I use this to nicely paste from clipboard with Ctrlv:

set pastetoggle=<F10>
inoremap <C-v> <F10><C-r>+<F10>

And this for yanking visual selection into clipboard with Ctrlc:

vnoremap <C-c> "+y
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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