vote up 5 vote down star

I guess other editors are smart enough to turn that stuff off for pasting but when using vim in a terminal it can't distinguish between pasting and actual typing.

What kinds of solutions or workarounds do you have for this?

Added: there's also a setting that makes comments automatically continue on the next line. The indenting at least doesn't change the semantics of the code but the auto comment continuation really screws things up. Come to think of it, I should just turn that off altogether -- anyone know what that option is called?

flag

74% accept rate

2 Answers

vote up 10 vote down check

:set paste is the way to go, but if you forget, as I often do, then if you are using a language with {} as the open/close of blocks, then doing a =% on the first { or last } will reapply the indenting.

link|flag
Nice trick with the =%. I forgot = works on ranges. – strager Jan 22 '09 at 20:53
This actually works with any language plugin that correctly defines blocks -- ruby, for example, can do this from the end. – Dan Fitch Jan 23 '09 at 2:04
vote up 10 vote down

:set paste

link|flag
:set nopaste - to turn indenting back on – J.J. Jan 22 '09 at 19:53
oh ho, thanks. so you have to remember to set it and unset it before and after pasting? I guess nothing more automatic is possible without a programmatic way to distinguish pasting and typing. – dreeves Jan 22 '09 at 19:57
You could use Key Mapping to bind it to a set of keys. But I have never tried this. shlomifish.org/lecture/Vim/beginners/slides/… – J.J. Jan 22 '09 at 20:00
Cool, want to incorporate that into your answer? And maybe add something about the feature that automatically continues commenting, if you know what I'm talking about there. – dreeves Jan 22 '09 at 21:02
@dreeves: automatically continued commenting is also disabled by :set paste – Dan Fitch Jan 23 '09 at 2:02
show 3 more comments

Your Answer

Get an OpenID
or
never shown

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