Re: [Vim-latex-devel] More about F9 completion in multi-directory situation

2011-02-25 Thread Ng Oon-Ee
On Fri, 2011-02-25 at 14:31 -0500, Ted Pavlic wrote: > > Thanks Ted, but actually I don't even compile to ps =). dvi for editing, > > pdf for final submissions for me. > > In that case, get rid of the ps compile target. You'll never need it. > > (interesting that you never have to worry about the

Re: [Vim-latex-devel] More about F9 completion in multi-directory situation

2011-02-25 Thread Ted Pavlic
> Thanks Ted, but actually I don't even compile to ps =). dvi for editing, > pdf for final submissions for me. In that case, get rid of the ps compile target. You'll never need it. (interesting that you never have to worry about the latex vs pdflatex image problem... I suppose you always keep a

Re: [Vim-latex-devel] More about F9 completion in multi-directory situation

2011-02-23 Thread Ng Oon-Ee
On Wed, 2011-02-23 at 18:39 -0500, Ted Pavlic wrote: > > let g:Tex_CompileRule_ps = 'dvips -Ppdf -o $*.ps $*.dvi' > > On an unrelated subject, you should probably add -G0 after the -Ppdf... > > dvips -Ppdf -G0 -o $*.ps $*.dvi > > That will help prevent any problems when converting from CMR fonts

Re: [Vim-latex-devel] More about F9 completion in multi-directory situation

2011-02-23 Thread Ted Pavlic
> let g:Tex_CompileRule_ps = 'dvips -Ppdf -o $*.ps $*.dvi' On an unrelated subject, you should probably add -G0 after the -Ppdf... dvips -Ppdf -G0 -o $*.ps $*.dvi That will help prevent any problems when converting from CMR fonts to Adobe fonts (but the -G0 must come after the -Ppdf). Addition

Re: [Vim-latex-devel] More about F9 completion in multi-directory situation

2011-02-23 Thread Ng Oon-Ee
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

Re: [Vim-latex-devel] More about F9 completion in multi-directory situation

2011-02-22 Thread Gerd Wachsmuth
> 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. > >

Re: [Vim-latex-devel] More about F9 completion in multi-directory situation

2011-02-22 Thread Ng Oon-Ee
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 w

Re: [Vim-latex-devel] More about F9 completion in multi-directory situation

2011-02-22 Thread Gerd Wachsmuth
On Tue, 22 Feb 2011, Ng Oon-Ee wrote: > In a previous thread I mentioned that using main.latexmain breaks > completion, where main.tex.latexmain fixes it. > > Having used this more in actual writing, I've come across buggy > behaviour while editing subfiles (chap1/chap1.tex for example), where >

[Vim-latex-devel] More about F9 completion in multi-directory situation

2011-02-22 Thread Ng Oon-Ee
In a previous thread I mentioned that using main.latexmain breaks completion, where main.tex.latexmain fixes it. Having used this more in actual writing, I've come across buggy behaviour while editing subfiles (chap1/chap1.tex for example), where F9 would give an empty list. Here's the sequence