Skip to content

Instantly share code, notes, and snippets.

@amonks
Created February 12, 2015 07:39
Show Gist options
  • Select an option

  • Save amonks/b2e228f817fb7b74233b to your computer and use it in GitHub Desktop.

Select an option

Save amonks/b2e228f817fb7b74233b to your computer and use it in GitHub Desktop.
vi paste mode: turning off auto indentation when pasting

If you paste a block into vim with autoindent turned on, each line will automatically be indented. It's a huge pain in the ass to fix.

Instead, use paste mode!

:set paste

# edit normally, insert mode is now `-- INSERT (paste) --`

:set nopaste
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment