[Vim-latex-cvs] vimfiles/ftplugin/latex-suite main.vim,1.8,1.9
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2002-11-20 06:27:58
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv26671 Modified Files: main.vim Log Message: remove the TCTarget and TVTarget commands from main.vim. These commands are now issued from compiler/tex.vim Index: main.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/main.vim,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** main.vim 17 Nov 2002 03:38:00 -0000 1.8 --- main.vim 20 Nov 2002 06:27:55 -0000 1.9 *************** *** 4,8 **** " Email: sr...@fa... " URL: ! " Last Change: Sat Nov 16 06:00 PM 2002 PST " " Help: --- 4,8 ---- " Email: sr...@fa... " URL: ! " Last Change: Tue Nov 19 10:00 PM 2002 PST " " Help: *************** *** 523,530 **** end end ! exe 'TCTarget '.g:Tex_DefaultTargetFormat ! exe 'TVTarget '.g:Tex_DefaultTargetFormat ! " compiler. if the user has put another compiler before ours, then we dont ! " get into our compiler/tex.vim. runtime compiler/tex.vim endfunction --- 523,529 ---- end end ! " This line seems to be necessary to source our compiler/tex.vim file. ! " The docs are unclear why this needs to be done even though this file is ! " the first compiler plugin in 'runtimepath'. runtime compiler/tex.vim endfunction |