[Vim-latex-cvs] vimfiles/ftplugin/latex-suite main.vim,1.83,1.84
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2005-12-08 22:51:37
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19468 Modified Files: main.vim Log Message: Bug: When you include the url package using <F5>, then all syntax highlighting after the \url{} command is screwed up. Why: packages/url contains a nasty definition of the url syntax item. I beleive it was copied straight from the definition of the \verb|| command, but thats not how \url{} is defined. Moreover, the syn command is not run at the correct time (when syntax is being loaded). Fix: For now, just comment out both the syn lines till a more robust solution is found. Index: main.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/main.vim,v retrieving revision 1.83 retrieving revision 1.84 diff -C2 -d -r1.83 -r1.84 *** main.vim 27 Nov 2005 01:20:56 -0000 1.83 --- main.vim 8 Dec 2005 22:51:29 -0000 1.84 *************** *** 636,640 **** " keep that as a stable point. function! Tex_Version() ! return "Latex-Suite: version 1.6.18" endfunction --- 636,640 ---- " keep that as a stable point. function! Tex_Version() ! return "Latex-Suite: version 1.6.19" endfunction |