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-22 14:48:21
|
On Tue, 2011-02-22 at 11:49 +0100, Gerd Wachsmuth wrote: > > Sorry for being unclear, I was referring in the first paragraph to a > > bug with using main.latexmain, which I fixed by using > > main.tex.latexmain. > > > > My primary question (the rest of the email) was about a bug I > > experienced when using main.tex.latexmain. > > I can't reproduce this bug. Maybe you can poste a minimal (not) working > example? Maybe this bug is influenced by the settings of the variables > Tex_UseOutlineCompletion and Tex_UsePython. > > Regards > Gerd Ah, didn't realize my previous email was reply to you only and not to the list. Added the list back to CC. Here's my minimal example. There's also a blank main.tex.latexmain. Instructions at the bottom of the email. main.tex \documentclass{report} \usepackage{natbib} \begin{document} \input{chap1/chap1.tex} \bibliographystyle{agsm} \bibliography{thesisrefs} \end{document} chap1/chap1.tex \chapter{Introduction} \section{First section} thesisrefs.bib @techreport{marr_theory_1977, title = {A Theory of Human Stereo Vision.}, author = {D. Marr and T. Poggio}, month = nov, year = {1977} }, @article{grimson_computer_1981, title = {A Computer Implementation of a Theory of Human Stereo Vision}, volume = {292}, journal = {Philosophical Transactions of the Royal Society of London. Series B, Biological Sciences}, author = {W. E. L. Grimson}, month = may, year = {1981}, pages = {217--253} } 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) |