如何让vim关闭已打开的pdf?
我已将以下行添加到我的 vimrc 中,这使得 vim 在我在 Latex 中打开的 tex 文件上运行 Latexmk:
au BufWinEnter *.tex :Latexmk
(:Latexmk 来自 Latex Box vim 插件)
我怎样才能添加类似的东西来关闭pdf 文件并在我关闭 vim 后杀死 Latexmk 吗?谢谢!
I've added the following line to my vimrc which makes vim run latexmk on tex file I open in latex:
au BufWinEnter *.tex :Latexmk
(:Latexmk comes from the Latex Box vim plugin)
How can I add something similar that will close the pdf file and kill latexmk after I close vim? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您仅将 evince 用于预览目的,则可以使用。此外,它可能会杀死其他名为 evince 的东西。当您关闭文件时,这实际上会杀死它。 请使用。
如果您想使用 vim 关闭应用程序,
Would work if you only use evince for preview purposes. Also, it may kill other stuff named evince. This actually kills it when you close the file. Use
if you want to close the apps with vim.