Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv7807
Modified Files:
compiler.vim
Log Message:
. goto the end of the current line before searching for the next error
pattern.
Index: compiler.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** compiler.vim 27 Nov 2002 06:40:38 -0000 1.15
--- compiler.vim 27 Nov 2002 08:18:24 -0000 1.16
***************
*** 3,7 ****
" Author: Srinath Avadhanula
" Created: Tue Apr 23 05:00 PM 2002 PST
! " Last Change: Tue Nov 26 10:00 PM 2002 PST
"
" Description: functions for compiling/viewing/searching latex documents
--- 3,7 ----
" Author: Srinath Avadhanula
" Created: Tue Apr 23 05:00 PM 2002 PST
! " Last Change: Tue Nov 26 11:00 PM 2002 PST
"
" Description: functions for compiling/viewing/searching latex documents
***************
*** 282,286 ****
else
" otherwise, search for the next line which contains the same
! " error pattern again.
call search(errpat, 'W')
endif
--- 282,288 ----
else
" otherwise, search for the next line which contains the same
! " error pattern again. goto the end of the current line so we
! " dont count this line again.
! normal! $
call search(errpat, 'W')
endif
|