[Vim-latex-devel] Log file reloading on compilation
Brought to you by:
srinathava,
tmaas
From: martin t. <mar...@gm...> - 2011-01-25 03:18:22
|
Hi, Every time I compile using \ll (with multiple passes), the corresponding log file gets loaded into the buffer. It gets distracting when I recompile again as VIM warns about the file changing since editing started (W11). Is there a missing autoreload behavior for opening the log file? I am using gVim on Windows with the latest vim-latex suite package. Below is my vimrc file Thanks! set expandtab set tabstop=2 set shiftwidth=2 set autoindent set smartindent set number set hidden colorscheme rdark set so=5 set wrap linebreak textwidth=0 syntax on set gfn=DejaVu\ Sans\ Mono\ 11 " REQUIRED. This makes vim invoke Latex-Suite when you open a tex file. filetype plugin on " IMPORTANT: win32 users will need to have 'shellslash' set so that latex " can be called correctly. set shellslash " IMPORTANT: grep will sometimes skip displaying the file name if you " search in a singe file. This will confuse Latex-Suite. Set your grep " program to always generate a file-name. set grepprg=grep\ -nH\ $* " OPTIONAL: This enables automatic indentation as you type. filetype indent on " OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to " 'plaintex' instead of 'tex', which results in vim-latex not being loaded. " The following changes the default filetype back to 'tex': let g:tex_flavor='latex' let g:Tex_DefaultTargetFormat='pdf' let g:Tex_MultipleCompileFormats='pdf' |