Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何将源代码粘贴到 vim 而没有错误格式?
在 Vim 中,当我粘贴这样的文本时:
第1行 线2 第 3 行
它将被转换为:
这通常发生在我从网上复制文本时。如何按原样粘贴文本?
用于:set paste启用粘贴模式。然后,您可以随意粘贴,而无需 vim 尝试自动缩进。完成后,请记住使用 禁用粘贴模式:set nopaste。
:set paste
:set nopaste
在插入模式下,C-r C-p *通常会做你想做的事。您也可以使用该noinvpaste选项。
C-r C-p *
noinvpaste