当我在vim中进行复制粘贴时,缩进不正确。所以我将以下内容添加到.vimrc
set paste
现在粘贴工作正常,但vim正在替换模式下打开文件。那是为什么?
我的替代方案是什么?
谢谢
答案 0 :(得分:0)
我如何避免缩进问题是使用:[line]pu[t] [x]
。例如,如果我想在第4行之后粘贴X行,我会这样做:
:4put+
来自:help :put
:[line]pu[t] [x] Put the text [from register x] after [line] (default
current line). This always works linewise, thus
this command can be used to put a yanked block as new
lines.