在 Vim 的 `autocmd` 命令中调用函数

发布于 2024-08-12 08:30:05 字数 527 浏览 5 评论 0原文

我想在 autocmd 中使用 expand 函数。特别是,我正在改编 Paul Biggar 的提示,我想要在我的 .gvimrc 中使用以下 auto 命令:

autocmd FileType tex set makeprg=rubber-info\ expand("%:t:r").log

– 这当然不起作用。所以我真正想要的意思是,在打开 tex 文件时,makeprg 变量被设置为 rubber-info filename.log 的值code> 其中 filename 是 TeX 文件的名称,不带文件扩展名。

我怎样才能做到这一点?

I want to use the expand function in an autocmd. In particular, I am adapting a tip by Paul Biggar and I wanted to use the following auto command in my .gvimrc:

autocmd FileType tex set makeprg=rubber-info\ expand("%:t:r").log

– Which of course doesn’t work. So what I actually want this to mean is that upon opening a tex file, the makeprg variable is set to the value of rubber-info filename.log where filename is the name of the TeX file without its file extension.

How can I accomplish this?

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

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

发布评论

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

评论(2

镜花水月 2024-08-19 08:30:05

你可以尝试这样的事情;未经测试,可能不完全正确,但使用 exe 通常是我解决此类问题的方法。

autocmd FileType tex exe "set makeprg=rubber-info\\ " . expand("%:t:r") . ".log"

You can try something like this; untested, may not be exactly right, but using exe is generally how I get around this kind of problem.

autocmd FileType tex exe "set makeprg=rubber-info\\ " . expand("%:t:r") . ".log"
苦妄 2024-08-19 08:30:05

另一种方法是使用 &l:makeprg 设置 makeprg

autocmd FileType tex let &l:makeprg = "rubber-info " . expand("%:t:r") . ".log"

如果您想了解有关设置选项的更多信息,请参阅 :help let-& <代码>:让。

The alternative is to set makeprg using &l:makeprg:

autocmd FileType tex let &l:makeprg = "rubber-info " . expand("%:t:r") . ".log"

See :help let-& if you want more information about settings options using :let.

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