[Vim-latex-cvs] vimfiles/ftplugin/latex-suite texviewer.vim,1.1,1.2
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2004-03-03 00:31:40
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11385 Modified Files: texviewer.vim Log Message: Bug: <F9> completion for \cite does not work Why: Tex_GrepForBibItems uses the mainfile name without extension. Fix: get the whole file name including extension. Index: texviewer.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texviewer.vim,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** texviewer.vim 26 Jan 2004 12:56:49 -0000 1.1 --- texviewer.vim 3 Mar 2004 00:19:29 -0000 1.2 *************** *** 452,456 **** " Description: function! Tex_GrepForBibItems(prefix) ! let mainfname = Tex_GetMainFileName(':p:r') let toquit = 0 --- 452,456 ---- " Description: function! Tex_GrepForBibItems(prefix) ! let mainfname = Tex_GetMainFileName(':p') let toquit = 0 |