Closed yakir12 closed 10 years ago
Look in LaTeX-Box/ftplugin/latex-box/latexmk.vim
near line 189. It shows how we modify the latexmk $pdflatex
variable to ensure that it has -file-line-error
. You could probably use something like that.
However, you could probably solve this better with a .latexmkrc
file. Look here for an example.
Brilliant. I just made a .latexmkrc file in home with line #23 from that example dot file there. Namely:
$pdflatex = 'pdflatex -interaction=nonstopmode --shell-escape %O %S';
Works! Thanks!!!
Great! Happy to help :)
Searched everywhere (sorry to call this an "issue"), but: what should I put in my vimrc file in order to enable system calls (-shell-escape)? I tired this:
but it didn't work.