[Vim-latex-cvs] vimfiles/ftplugin/latex-suite compiler.vim,1.36,1.37
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-06-05 18:35:11
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv16693 Modified Files: compiler.vim Log Message: Bug: The recent change with "escaping" the special characters in PositionPreviewWindow messes up movement in the Error list window. Index: compiler.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** compiler.vim 4 Jun 2003 09:52:41 -0000 1.36 --- compiler.vim 5 Jun 2003 18:16:28 -0000 1.37 *************** *** 396,401 **** " land us on the error in a.tex. if errfile != '' ! "exec 'bot pedit +/(\(\f\|\[\|\]\)*'.errfile.'/ '.a:filename.'.log' ! exec 'bot pedit +/(\\(\\f\\|\\[\\|\\]\\)\*'.errfile.'/ '.a:filename.'.log' else exec 'bot pedit +0 '.a:filename.'.log' --- 396,400 ---- " land us on the error in a.tex. if errfile != '' ! exec 'bot pedit +/(\(\f\|\[\|\]\)*'.errfile.'/ '.a:filename.'.log' else exec 'bot pedit +0 '.a:filename.'.log' |