什么区别:插入和:附加?

时间:2015-09-05 23:01:52

标签: vim

我正在寻找一个粘贴代码但禁用自动缩进的vim命令。所以我找到了这些命令,我​​只需要使用一个命令并粘贴,然后输入<Ctrl+C>,非常简单。

但是,我不明白:insert:append之间的区别。

他们真的有同样的行为吗?

1 个答案:

答案 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.