Update of /cvsroot/vim-latex/vimfiles
In directory usw-pr-cvs1:/tmp/cvs-serv32166
Modified Files:
makefile
Log Message:
makefile: I fixed a little mistake I made
main.vim: I commented out "runtime compiler/tex.vim". See further comments in the file.
compiler.vim and texrc: 1. I added some support for Mac OSX, using
if has('macunix') ...
2. Instead of "--interaction=nonstopmode" I use "\nonstopmode \input{$*}"
as in compiler/tex.vim . Not all versions of tex support the --interaction option, so this is more robust. Then, the "\" and "{}" have to be escaped for
the shell. I simplified "let &l:makeprg ..." with curly-brace variables.
Index: makefile
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/makefile,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** makefile 4 Nov 2002 14:15:20 -0000 1.6
--- makefile 4 Nov 2002 15:39:24 -0000 1.7
***************
*** 80,86 ****
# If you can think of a better name for this target, be my guest!
stallin:
! rsync -CrtW --existing ${VIMFILES} .
sync:
rsync -CrtuW ${EXCLUDE} . ${VIMFILES}
! rsync -CrtuW --existing ${VIMFILES} .
--- 80,86 ----
# If you can think of a better name for this target, be my guest!
stallin:
! rsync -CrtW --existing ${VIMFILES}/ .
sync:
rsync -CrtuW ${EXCLUDE} . ${VIMFILES}
! rsync -CrtuW --existing ${VIMFILES}/ .
|