How to paste source code to vim without error format?

依然范特西╮ 提交于 2019-11-30 01:40:53

Automatic indenting kicked in.

The easiest way to disable it is: :set paste

:help paste

'paste'                 boolean (default off)      
                        global
                        {not in Vi}
    Put Vim in Paste mode.  This is useful if you want to cut or copy
    some text from one window and paste it in Vim.  This will avoid
    unexpected effects.
    Setting this option is useful when using Vim in a terminal, where Vim
    cannot distinguish between typed text and pasted text.  In the GUI, Vim
    knows about pasting and will mostly do the right thing without 'paste'
    being set.  The same is true for a terminal where Vim handles the
    mouse clicks itself.

Karoly's answer is correct regarding the paste option.

You can then add a mapping in your .vimrc to quickly enable/disable 'paste' option:

For example, I use set pastetoggle=<F10>

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!