当前位置:  开发笔记 > 开发工具 > 正文

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

如何解决《如何将其他文件的内容加载到Vim中的当前文件?》经验,为你挑选了1个好方法。

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

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



1> Nathan Fellm..:

在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.


作为旁注,结合!你也可以将命令的输出读入vim.:r!ls
推荐阅读
我我檬檬我我186
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有