Comment on Pasting in command line Vim doesn't have to suckComments−mpobrien15yAnother method I sometimes use for pasting large blocks of code: :r !cat (paste your stuff) ctrl - D Doesn't require any switching between paste modes.−tzs15yNice idea, and you can replace cat if you need to clean up the paste: :r!perltidy (paste coworker's ugly perl code) ctrl-D and you have nice looking code pasted.−iopuy15yInteresting.... I see how it works, any other benefit to this approach?
Comments
Another method I sometimes use for pasting large blocks of code:
Doesn't require any switching between paste modes.Nice idea, and you can replace cat if you need to clean up the paste:
and you have nice looking code pasted.Interesting.... I see how it works, any other benefit to this approach?