Vim 跳转事件?

发布于 2024-12-10 17:42:14 字数 356 浏览 0 评论 0原文

我经常编辑相同的文件,因此我分配了一些全局标记,以便更轻松地加载它们。例如,我通过在正常模式下键入 'R 跳转到我的简历(TeX 文件)。

我还为 TeX 文件设置了自动命令,由 BufWinEnter 事件触发。如果我在正常模式下输入 :e /path/to/resume.tex ,一切都会很好。耶!

但是,当我使用全局标记'R跳转到文件时,BufWinEnter事件似乎没有被触发。我应该使用其他事件来代替吗?设置这个的正确方法是什么?

这是 ~/.vim/ftplugin/tex.vim 的相关行

au BufWinEnter <buffer> silent loadview

I edit the same files often, so I have assigned some global marks to make it easier to load them up. For example, I jump to my resume (a TeX file) by typing 'R in normal mode.

I have also set up autocommands for TeX files, triggered by the BufWinEnter event. If I type :e /path/to/resume.tex in normal mode, everything works great. Yay!

However, the BufWinEnter event does not seem to be triggered when I jump to the file using the global mark 'R. Is there some other event I should use instead? What is the right way to set this up?

Here is the relevant line of ~/.vim/ftplugin/tex.vim

au BufWinEnter <buffer> silent loadview

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心头的小情儿 2024-12-17 17:42:14

请考虑在 .vimrc 中使用 :au Syntax texsilent loadview 来代替。

Consider using :au Syntax tex silent loadview in .vimrc, instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文