防止 (G)Vim 自行创建标记
我刚刚了解了 Vim 中的标记,我非常喜欢它。但我注意到 Vim 会自动创建标记,是否有办法阻止这种情况
I just learnt about marks in Vim and I like it quite a lot. But I've noticed that Vim automatically creates marks, could there be a way to prevent that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有些标记是由 Vim 自动设置和更新的,其他标记(如命名标记
az
)可供您使用(尽管有些插件也可能将它们用于其目的)。有
:delmarks
命令,您可以通过'viminfo'
配置设置来控制在 Vim 调用中保留哪些标记以及多少个标记。Some marks are set and updated automatically by Vim, others (like the named marks
a-z
) are available for you (though some plugins may use them for their purposes, too).There's the
:delmarks
command, and you can control which and how many marks are persisted across Vim invocations via the'viminfo'
configuration setting.