On 2020-07-04, ravi r wrote:
> My Vim Latex-Suite .vimrc settings:
> let g:Tex_DefaultTargetFormat="pdf"
> let g:Tex_CompileRule_pdf='pdflatex --output-directory=/tmp -aux-directory
> =/tmp -interaction=nonstopmode $*'
> let g:Tex_ViewRule_pdf='cd /tmp; AcroRd32'
>
> I would like to find out if there is any support from Vim Latex Suite for pdf
> readers
> like evince, okular that would allow live pdf preview as the tex document is
> being modified.
I use this:
let g:Tex_ViewRule_pdf = 'evince'
Updating the PDF document is just a matter of executing
\ll
Regards,
Gary
|