Re: [Vim-latex-devel] Compilation (Correction)

2008-06-18 Thread Simon Friedberger
let g:Tex_ViewRuleComplete_pdf = 'evince $* ' didn't work I had to add a .pdf let g:Tex_ViewRuleComplete_pdf = 'evince $*.pdf ' - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for

Re: [Vim-latex-devel] Compilation

2008-06-18 Thread Till Maas
On Wed June 18 2008, Simon Friedberger wrote: I have two issues. a) I set let g:Tex_ViewRuleComplete_pdf = 'evince $* ' but it is not automatically opened after compilation, is that the desired behavior? Iirc it should be enough to set it to 'evince' on UNIX/Linux systems, the filename and

Re: [Vim-latex-devel] Compilation (Correction)

2008-06-18 Thread Till Maas
On Wed June 18 2008, Simon Friedberger wrote: let g:Tex_ViewRuleComplete_pdf = 'evince $* ' didn't work I had to add a .pdf let g:Tex_ViewRuleComplete_pdf = 'evince $*.pdf ' Btw, This beheavior is documented in: vimfiles/ftplugin/latex-suite/texrc Regards, Till signature.asc Description:

Re: [Vim-latex-devel] Compilation

2008-06-18 Thread Simon Friedberger
Iirc it should be enough to set it to 'evince' on UNIX/Linux systems, the filename and ampersand are added by default. It does not work without. But it is not ViewRuleComplete but ViewRule that you need to change to 'evince'. I think you misunderstood me. The command works I just wondered

Re: [Vim-latex-devel] Compilation

2008-06-18 Thread Simon Preston
Simon, Yes, I think that is the standard behaviour. It annoyed me a bit, so I added in ~/vimfiles/ftplugin/latex-suite/compiler.vim the function: function! Tex_SaveCompileView() silent! update call Tex_RunLaTeX() call Tex_ViewLaTeX() endfunction And inside function!

Re: [Vim-latex-devel] Compilation

2008-06-18 Thread Simon Preston
b) Sometimes after compilation I get a press a Button message. So far only happened in conjunction with latex ran once. So it doesn't seem to happen if latex runs multiple times. On your second point, I also get this behaviour - haven't looked into it though, and afraid I can offer no

Re: [Vim-latex-devel] Compilation

2008-06-18 Thread Ted Pavlic
Yes, I think that is the standard behaviour. It annoyed me a bit, so I added in ~/vimfiles/ftplugin/latex-suite/compiler.vim the function: function! Tex_SaveCompileView() silent! update call Tex_RunLaTeX() call Tex_ViewLaTeX() endfunction And inside function!

Re: [Vim-latex-devel] compiling with wrong cross-references

2008-06-18 Thread Ted Pavlic
It occurs to me that something else should probably be committed to the repo. As discussed on the vim-mac mailing list, on line 43 of compiler.vim, there's a line that **SHOULD** be: if !(has('win32') || has('macunix')) (!Tex_GetVarValue('Tex_UseMakefile') || (glob('makefile*') == ''

Re: [Vim-latex-devel] `( shortcut

2008-06-18 Thread Till Maas
On Wed June 18 2008, Simon Friedberger wrote: Using the `( shortcut in visual mode to create braces around a matrix thoroughly messes up indentation, maybe someone could check that. Please create a bug report at http://sourceforge.net/tracker/?group_id=52322atid=466456 and provide there some