Vim 跳转事件?
我经常编辑相同的文件,因此我分配了一些全局标记,以便更轻松地加载它们。例如,我通过在正常模式下键入 '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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请考虑在
.vimrc
中使用:au Syntax texsilent loadview
来代替。Consider using
:au Syntax tex silent loadview
in.vimrc
, instead.