如何将其他文件的内容加载到Vim中的当前文件?

时间:2009-07-23 05:42:39

标签: vim

作为标题,任何方便的方式?

我特别需要一些cvs / git commit或sendmail来加载模板注释。我认为这是一个vi环境,而不是Vim。

1 个答案:

答案 0 :(得分:72)

在VIM命令提示符下:

:read new_file

或简称:

:r new_file

这会将new_file的内容插入光标所在的位置。例如,如果这是new_file

的内容
I do not like green eggs and ham 
I do not like you sam I am

这是您正在编辑的文字:

I meant what I said and I said what I meant
An elephant's faithful one hundred percent.

您的光标位于第一行,然后键入:

:read new_file              

然后你的缓冲区将是:

I meant what I said and I said what I meant
I do not like green eggs and ham 
I do not like you sam I am
An elephant's faithful one hundred percent.