Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory usw-pr-cvs1:/tmp/cvs-serv23612
Modified Files:
compiler.vim
Log Message:
. Syntax Error!!!! I commited a syntax error! Vim's line continuation \
occurs at the beginning of the second line, not the end of the first
line!
Hmm... This calls for a strict regimentation. Since I do not use unix so
often, I will never again touch code in "if !has('win32')" blocks.
However, installing latex with cygwin provides a very nice unix emulation
of vim... so debugging those things is possible.
Note to self: If you are touching "if !has('win32')" blocks, then verify
on cygwin/latex before commiting!
Index: compiler.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** compiler.vim 8 Nov 2002 18:00:48 -0000 1.6
--- compiler.vim 12 Nov 2002 13:44:31 -0000 1.7
***************
*** 153,158 ****
" because that seems to not work on older bash'es.
if s:target == 'dvi'
! if exists('g:Tex_UseEditorSettingInDVIViewer') && \
! g:Tex_UseEditorSettingInDVIViewer == 1
exec '!'.s:viewer.' -editor "gvim --servername '.v:servername.' --remote-silent +%l %f" '.mainfname.'.dvi &'
else
--- 153,158 ----
" because that seems to not work on older bash'es.
if s:target == 'dvi'
! if exists('g:Tex_UseEditorSettingInDVIViewer') &&
! \ g:Tex_UseEditorSettingInDVIViewer == 1
exec '!'.s:viewer.' -editor "gvim --servername '.v:servername.' --remote-silent +%l %f" '.mainfname.'.dvi &'
else
|