我正在寻找一个粘贴代码但禁用自动缩进的vim命令。所以我找到了这些命令,我只需要使用一个命令并粘贴,然后输入<Ctrl+C>
,非常简单。
但是,我不明白:insert
和:append
之间的区别。
他们真的有同样的行为吗?
答案 0 :(得分:1)
:insert
和:append
的行为不一样。
:insert
在光标前插入文字
:append
在光标后插入文字
来自:h append
追加({lnum},{expr})
追加()
When {expr} is a |List|: Append each item of the |List| as a
text line below line {lnum} in the current buffer.
Otherwise append {expr} as one text line below line {lnum} in
the current buffer.
{lnum} can be zero to insert a line before the first one.