Any Emacs command like paste-mode in vim?

ZelluX picture ZelluX · Jun 12, 2009 · Viewed 8k times · Source

When i'm trying to paste some code from browser to Emacs, it will indent code automatically, is there any way to stop Emacs from indenting temporarily like :set paste in vim?

Answer

Maresh picture Maresh · Aug 17, 2015

The easiest way with emacs24 is:

M-x electric-indent-mode RET

That disables auto indentation.

Paste your thing.

renable

M-x electric-indent-mode RET

Or just M-x UP-Arrow ;-)