Re: [Vim-latex-devel] More about F9 completion in multi-directory situation
Brought to you by:
srinathava,
tmaas
From: Ng Oon-Ee <ng...@gm...> - 2011-02-23 15:54:59
|
On Wed, 2011-02-23 at 08:12 +0100, Gerd Wachsmuth wrote: > > INSTRUCTIONS:- > > > > Test 1- > > 1. edit chap1/chap1.tex > > 2. Type \cite{ then press F9 > > 3. Should show up as 0 results. > > 4. Run :edit ../main.tex > > 5. Type \cite{ then press F9 > > 6. Results show. Undo everything, then :edit chap1/chap1.tex > > 7. Typing \cite{ then pressing F9 now shows results. > > > > Test 2- > > Step 1-4 as above > > 5. Type \cite{marr then press F9 > > 6. Only one of the two results show. Undo everything, > > then :edit /chap1/chap1.tex > > 7. Typing \cite{ then pressing F9 only shows the previous result (ie. > > not both results as in test 1 above) > > I can't reproduce this. Staying in the main directory, both > > gvim chap1/chap1.tex > > and > > cd chap1/; gvim chap1.tex > > does not result in this bug. Which version of the latex-suite do you use? > What variables do you set? > > Regards > Gerd I'm using a git version, grabbed it on 16th Feb 2011. I've got a fairly long .vimrc, should I attach it here? My tex.vim is let g:Tex_DefaultTargetFormat = 'dvi' let g:Tex_MultipleCompileFormats = 'dvi,pdf' let g:Tex_ViewRule_ps = 'gnome-open' let g:Tex_ViewRule_pdf = 'okular' let g:Tex_ViewRule_dvi = 'okular' let g:Tex_UseEditorSettingInDVIViewer = 1 let g:Tex_CompileRule_dvi = 'latex -interaction=nonstopmode --src-specials $*' let g:Tex_CompileRule_ps = 'dvips -Ppdf -o $*.ps $*.dvi' let g:Tex_CompileRule_pdf = 'pdflatex -interaction=nonstopmode -synctex=1 $*' set iskeyword+=: |