How can I configure vim / latex-suite to always install autoread log files created by Tex_RunLaTeX() ?
Find out what type of file is set for the file:
:setl filetype?
Then configure autocmd:
:autocmd FileType <the-filetype-here> setlocal autoread
Alternatively, you can also directly define autocmd in the file template :autocmd BufRead *.log ... or add :setlocal autoread directly to the <Leader>ll display.
source share