[Vim-latex-cvs] vimfiles/ftplugin/latex-suite main.vim,1.9,1.10
Brought to you by:
srinathava,
tmaas
From: <mi...@us...> - 2002-11-23 21:39:25
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv3301 Modified Files: main.vim Log Message: Moved sourcing of package.vim to the end of file. Now mappings and other goodies defined in package files will overwrite all other stuff. Index: main.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/main.vim,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** main.vim 20 Nov 2002 06:27:55 -0000 1.9 --- main.vim 23 Nov 2002 21:39:22 -0000 1.10 *************** *** 4,8 **** " Email: sr...@fa... " URL: ! " Last Change: Tue Nov 19 10:00 PM 2002 PST " " Help: --- 4,8 ---- " Email: sr...@fa... " URL: ! " Last Change: sob lis 23 10:00 2002 C " " Help: *************** *** 467,471 **** exe 'source '.s:path.'/compiler.vim' exe 'source '.s:path.'/folding.vim' - exe 'source '.s:path.'/packages.vim' exe 'source '.s:path.'/templates.vim' exe 'source '.s:path.'/custommacros.vim' --- 467,470 ---- *************** *** 532,535 **** --- 531,537 ---- " }}} + + " Mappings defined in package files will overwritten all other + exe 'source '.s:path.'/packages.vim' let &cpo = s:save_cpo |