Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv20112
Modified Files:
compiler.vim texrc
Log Message:
Make configurable going to error/message after compilation.
Default is going.
Index: compiler.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** compiler.vim 7 Sep 2003 17:22:09 -0000 1.47
--- compiler.vim 28 Sep 2003 22:54:04 -0000 1.48
***************
*** 171,175 ****
" resize the window to just fit in with the number of lines.
exec ( line('$') < 4 ? line('$') : 4 ).' wincmd _'
! call GotoErrorLocation(mfnlog)
endif
--- 171,179 ----
" resize the window to just fit in with the number of lines.
exec ( line('$') < 4 ? line('$') : 4 ).' wincmd _'
! if exists('g:Tex_GotoError') && g:Tex_GotoError == 1
! call GotoErrorLocation(mfnlog)
! else
! wincmd k
! endif
endif
Index: texrc
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** texrc 28 Sep 2003 22:52:45 -0000 1.37
--- texrc 28 Sep 2003 22:54:04 -0000 1.38
***************
*** 189,192 ****
--- 189,196 ----
" TexLet g:Tex_CompilerFlags = ''
+ " If disabled (set to 0) LaTeX-Suite doesn't go immediately to warnings or
+ " errors after compilation
+ TexLet g:Tex_GotoError == 1
+
" }}}
" ==============================================================================
|