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

Unfortunately, I am not an experienced vim user. But, I am making the effort to learn it.

When I paste code into my document from the clipboard, I get extra spaces at the start of each new line:

line
  line
    line

I know you can turn off auto indent but mine doesn't seem to work because I have some other settings conflicting or something (which look pretty obvious in my .vimrc but don't seem to matter when I take them out).

Can someone please show me the way to turn this off when I paste code but still have vim auto indent when I am writing code? Please see my .vimrc file:

set expandtab
set tabstop=2
set shiftwidth=2
set autoindent
set smartindent
set bg=dark
set nowrap

Many thanks

share|improve this question

6 Answers

up vote 211 down vote accepted

To turn off autoindent when you paste code, there's a special "paste" mode.

Type

:set paste

Then paste your code. Note that the text in the tooltip now says -- INSERT (paste) --.

After you pasted your code, turn off the paste-mode, so that auto-indenting when you type works correctly again.

:set nopaste
share|improve this answer
10  
This isn't any easier than :set noai followed by :set ai. The suggestion of :r! cat is shorter. – Leopd May 26 '10 at 21:34
2  
I think set paste is easier, definitely. It is much more semantic than noai or even noautoindent, which is more important when typing "noai" and "paste" take about the same insignificant amount of time when you are proficient enough as a touch typist. – Victor Zamanian Feb 15 at 15:27
2  
:set noai doesn't always work, depending on how the other indent-related settings are configured as per the OP. :set paste appears to be a shorthand for several settings all at once. – MarkHu Apr 26 at 1:16

A useful command to have in your .vimrc is set pastetoggle=<F10> or some other button, to easily toggle between paste and nopaste.

share|improve this answer

I usually use :r! cat and then paste ( shift + insert ) the content, and CTRL+D.

No need to enable & disable, direct usage.

share|improve this answer
3  
This works great via SSH too! – Brian Jan 12 '12 at 14:40
Works well on default Linux Mint environment, thanks. – Fedir Jun 12 at 15:35

If you are working locally, you can paste from the system clipboard with the key sequence:

"+p

This is a proper vim command, so no need to worry about entering an insert mode or switching off autoindent first.

Of course if you are working remotely (console over SSH, for example) then this won't work and you should go the :set noai, insert mode, paste into console, leave insertmode, :set ai route as described elsewhere.

share|improve this answer
1  
I write this answer ages ago. Nowadays I use :set paste and :set nopaste instead because despite being longer, it's easier to remember and I don't have to look it up every time! – thomasrutter Feb 6 at 2:49

Stick this in your ~/.vimrc and be happy:

" enables :Paste to just do what you want
command Paste execute 'set noai | insert | set ai'
share|improve this answer

This works for me ( case for + register, what i use like exchange buffer between aps ):

imap <silent> <S-Insert> <C-O>:set noai<CR><C-R>+<C-O>:set ai<CR>
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.