Vim 根据文件内容自动执行命令
我正在尝试设置 Vim 来检测 .tex 文件何时包含命令 '\usepackage{sagemath}',并相应地运行命令。我已经做到了,
:au BufReadPost,BufWritePost *.tex TTarget sagepdf
但这会触发所有 .tex 文件,这不是我想要的。
I'm trying to set up Vim to detect when a .tex file contains the command '\usepackage{sagemath}', and run a command accordingly. I've gotten to
:au BufReadPost,BufWritePost *.tex TTarget sagepdf
but that will fire for all .tex files, which isn't what I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的 filetype.vim 中有一个关于如何区分 html 类型的示例。您可以轻松修改以适合您的逻辑。注意 getline(n) =~ 行
Theres an example in my filetype.vim on how to destinguish html types. You can easily modify to suit your logic. Note the getline(n) =~ lines
首先,您应该考虑使用 modeline。
如果您无法通过模型行获得所需的内容,您可以在
autocmd
中使用您自己的函数,如下所示:并且您可能可以编写一个函数来检查某个模式是否匹配,然后运行任何你想要的。
First, you should consider using a modeline.
If you can't get what you want with a modeline, you can use your own function in
autocmd
, like this:and you probably can write a function that checks whether a certain pattern matches, and then runs whatever you want.