如何将另一个文件的内容加载到vim中的当前文件

前端之家收集整理的这篇文章主要介绍了如何将另一个文件的内容加载到vim中的当前文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
作为标题,任何方便的方式?

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

在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.
原文链接:https://www.f2er.com/bash/390417.html

猜你在找的Bash相关文章