> In a separate note, I would like to know how to run "call > Tex_RunLatex" in the background of a vim buffer; i.e. I want to be > able to type and run other commands in my vim buffer while tex > compilation is occurring via vim-latex in the same buffer. Anyone > know how to set this up? I would prefer to have this background > compilation occur every time I save my document.
You can't do that in Vim, as it is a single-thread application. You can, however, arrange for compilation to launch when you save the file. Something like autocmd BufWritePost *.tex normal \ll should work. But of course, it will become a hassle since compilation takes non-immediate time. -- Javier Rojas GPG Key ID: 0x24E00D68
signature.asc
Description: Digital signature
------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity and more. Splunk takes this data and makes sense of it. Business sense. IT sense. Common sense. http://p.sf.net/sfu/splunk-d2dcopy1
_______________________________________________ Vim-latex-devel mailing list Vim-latex-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/vim-latex-devel