如何避免 .vimrc 中的扩展(或保护文本)?
我正在使用 Vim 的时间戳插件,当您将其包含
% Created: TIMESTAMP
% Modified: TIMESTAMP
在文件中时,会将 TIMESTAMP
替换为创建/修改日期。问题是我想在 .vimrc 中创建一个快捷方式,以便在正常模式下按 ts 来对新文件执行此操作。
当然,因为我使用 Vim 编辑这个文件,所以它会用 .vimrc 中的日期替换 TIMESTAMP
。如何在我的 nmap
定义中“保护”该文本,或者以其他方式定义快捷方式?
谢谢。
I'm using a timestamp plugin for Vim that when you include
% Created: TIMESTAMP
% Modified: TIMESTAMP
in a file, replaces TIMESTAMP
by the date of creation/modification. The problem is that I want to create a shortcut in my .vimrc to press ts
in normal mode to do this with new files.
But of course, because I use Vim to edit this file, it is replacing TIMESTAMP
by the date in .vimrc. How can I "protect" that text in my nmap
definition, or at define the shortcut some other way?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加文件名例外。
Add an exception on filenames.
尝试以下方法之一:
Try one of the following: