[Vim-latex-devel] Latest revision breaks forward search with Skim

2012-01-26 Thread Peter Vasil
Hi list,

I updated vim-latex to the lates revision
8b62284128414dc141f633d70e5972b8028ccaef, but it breaks forward search
with Skim. With one commit before
36d275da3266c1b0cdc8f525f4d977d0154241f1 forward search works.

Thanks,
Peter

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


[Vim-latex-devel] forward search pdf with okular patch

2012-01-26 Thread Peter Vasil
Hi,

I use pdf as output and latex-suite only supports dvi on linux. I
changed the hardcoded .dvi into .s:target:. and it works now with
pdf files. Also added --unique option.
What do you think?

I attached the patch.

Peter
From 360d6ccb7c026f8f3867c38c219f8d5cc38e647f Mon Sep 17 00:00:00 2001
From: ptrv m...@petervasil.net
Date: Fri, 27 Jan 2012 03:27:21 +0100
Subject: [PATCH] Fix okular pdf forward search and add --unique.

---
 ftplugin/latex-suite/compiler.vim |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ftplugin/latex-suite/compiler.vim b/ftplugin/latex-suite/compiler.vim
index 0541c4a..35ea57d 100644
--- a/ftplugin/latex-suite/compiler.vim
+++ b/ftplugin/latex-suite/compiler.vim
@@ -392,7 +392,7 @@ function! Tex_ForwardSearchLaTeX()
 
 			elseif viewer =~ '^ *okular'
 
-let execString = 'silent! !'.viewer.' '.mainfnameRoot.'.dvi\#src:'.line('.').expand(%)
+let execString = 'silent! !'.viewer.' --unique '.mainfnameRoot.'.'.s:target.'\#src:'.line('.').expand(%)
 
 
 			endif
-- 
1.7.8.3

--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


Re: [Vim-latex-devel] forward search pdf with okular patch

2012-01-27 Thread Peter Vasil
Hi Ted,

thanks for the changes and yes git-send-mail is better but I have't
set up the config for that. Will do next time.

I see that you changed all linux viewers to have the unique option. I
don't know if they have the option. I just know about okular.

And yes, if I forward search in okular without the unique option,
every time it opens another instance, which is quite annoying.
I also use Skim on my Mac and it handles the instances by itself.

You also changed the hardcoded dvi on xdvik, kdvi and xdvik. I don't
know if they can handle pdfs. Okular can, as I use it with pdfs.
I also see the unique option on kdvi. Why cant okular have it?

Thanks,
Peter


On Fri, Jan 27, 2012 at 4:34 AM, Ted Pavlic t...@tedpavlic.com wrote:
 Peter --

        Good work. A few comments though. Before that, have you used patchbomb?
 Sometimes it's nice to be able to scrutinize a patch within an e-mail
 (as opposed to an attached file).

 I use pdf as output and latex-suite only supports dvi on linux. I
 changed the hardcoded .dvi into .s:target:. and it works now with

        That's a good point. Back in the old days, source specials were an
 exclusive DVI thing. That must be the reason for the hard-coded DVI. So
 that's a good fix.

 pdf files. Also added --unique option.

        Some people might not like that. Why not just assume --unique will be
 part of the viewer? Or is forward searching with okular hobbled without
 unique instances?

        Best --
        Ted

 --
 Ted Pavlic t...@tedpavlic.com

--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


[Vim-latex-devel] Compilation creates empty buffers

2012-01-27 Thread Peter Vasil
Hi,

I dont know if its just me but compilation creates an empty buffer
with the same name as the .tex file I compile.

Peter

--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


Re: [Vim-latex-devel] Compilation creates empty buffers

2012-02-11 Thread Peter Vasil
It is strange, but I can't reproduce the problem anymore. Somehow the
compilation doesn't create empty buffers anymore. Maybe it was some
other setting which caused this. And yes I always create a file which
has .latexmain as extension. i.e if my main file is main.tex then I
create a file which is called main.tex.latexmain and everything works.

Sorry for the noise, but the empty buffers were quite annoying.

Peter


On Wed, Feb 8, 2012 at 9:45 PM, Ted Pavlic t...@tedpavlic.com wrote:
 Peter --

        Can you give a minimal working example?

        Also, let's say you have a file called:

 test.tex

 and you created a latexmain called:

 test.latexmain

 It is known that Vim-LaTeX will create an empty buffer called test. To
 get around this, name your latexmain:

 test.tex.latexmain

 This is the name that Vim-LaTeX expects. It just happens that getting
 rid of the tex mostly works...

 --Ted

 On 01/27/2012 06:58 AM, Peter Vasil wrote:
 Hi,

 I dont know if its just me but compilation creates an empty buffer
 with the same name as the .tex file I compile.

 Peter

 --
 Try before you buy = See our experts in action!
 The most comprehensive online learning library for Microsoft developers
 is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
 Metro Style Apps, more. Free future releases when you subscribe now!
 http://p.sf.net/sfu/learndevnow-dev2
 ___
 Vim-latex-devel mailing list
 Vim-latex-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/vim-latex-devel

 --
 Ted Pavlic t...@tedpavlic.com

--
Virtualization  Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


[Vim-latex-devel] Cite completion does not work in included tex file

2012-02-23 Thread Peter Vasil
Hi List,

As the subject says cite completion does not work in included files.
When trying to complete a cite a quickfix window opens with an empty
__OUTLINE__ buffer. Also every time I hit F9 a new empty buffer is
created and remains open.

When I hit F9 in the master file cite completion works and after that
cite completion in included files works also.

Thanks,
Peter

--
Virtualization  Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


Re: [Vim-latex-devel] Forward search with okular

2012-05-17 Thread Peter Vasil
Hi,

I use vim-latex with okular and forward search works like a charm.

I have this in my .vimrc

set grepprg=grep\ -nH\ $*
let g:tex_flavor='latex'
let g:Tex_DefaultTargetFormat = 'pdf'
let g:Tex_ViewRule_pdf = 'okular'
let g:Tex_CompileRule_pdf = /usr/local/bin/latexmk -e
'$pdflatex=q/pdflatex -interaction=nonstopmode -file-line-error
-halt-on-error -synctex=1/' -pdf -bibtex $*

I use latexmk for compilation and you have to set -synctex=1
somewhere in the compile rules.

Also, did you try to use the latest vim-latex from the git repository?
I dont know which version is in the OpenSUSE repositories but okular
forward search is working with the latest vim-latex version from the
git repository.

Peter


On Thu, May 17, 2012 at 11:40 AM, Filip Kadlec kadl...@fzu.cz wrote:
 Hello,
  I would appreciate if someone could help me to resolve this problem.

 I have installed vim-latex from the OpenSuSE distribution. Most of its
 features work correctly. \ll will start latex translation, and \lv
 launches the viewer. However, \ls , instead of launching the forward
 search, does nothing. I have tried to make it work by entering, in vim:

 :let g:Tex_CompileRule_dvi = 'let'atex -src-specials
 -interaction=nonstopmode $*' '

 and

 TCTarget dvi

 as found in the FAQ. However, this does not help. I understand from the
 mailing list there were some quite recent patches to this behavior, also
 in order to get a single instance of okular, but I am not sure how it is
 best to proceed.

         Thanks in advance for your assistance.


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Vim-latex-devel mailing list
 Vim-latex-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/vim-latex-devel

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


Re: [Vim-latex-devel] Forward search with okular

2012-05-17 Thread Peter Vasil
On Thu, May 17, 2012 at 1:00 PM, Filip Kadlec kadl...@fzu.cz wrote:
 Peter,
  thanks for your reply.

 Having sourced the lines below into vim, there is some progress. Now, when I
 type \ls , three new okular instances will open; one contains the compiled
 file while the other two are empty. Each provides an error box, like this:

 Could not open /home/kadlecf/Documents/path/file.tex            and
 Could not open /home/kadlecf/Documents/path/40

 where 40 corresponds to the current line in the .tex source.
This could be the thing with the old version of vim-latex. I just can
say for the latest vim-latex version from the git-repository that
forward search works because I made some fixes regarding okular which
then went into the vim-latex source. Which vim-latex version do you
use?


 Concerning the option -synctex=1, sorry for my ignorance, but I don't know
 where to set it. What exactly does it influence?
If you have put all lines in your vimrc which I posted in my previous
email, then the synctex option is already there. This option generates
the necessary data for forward search. Without this option forward
search doesn't work and not only in vim-latex. All latex editors use
the synctex option for forward search.


 Also, I would be ready to install the latest version using the
 git-repository, but I do not know how to proceed...
I use vim-pathogen [1] for managing my vim plugins. Simply clone the
vim-latex repository into the bundle directory.
If you read [1] then you will probably know what I mean with the
bundle directory.
The clone command is:
git clone git://vim-latex.git.sourceforge.net/gitroot/vim-latex/vim-latex

You could also clone the repoository and copy all files manually to
~/.vim/ folder. There is also some help on the vim-latex download page
[2], where to put all files. But the description is without the
pathogen plugin.

[1]: http://www.vim.org/scripts/script.php?script_id=2332
[2]: http://vim-latex.sourceforge.net/index.php?subject=download


Hope this helps,
Peter



  Filip


 On Thu, 17 May 2012, Peter Vasil wrote:

 Hi,

 I use vim-latex with okular and forward search works like a charm.

 I have this in my .vimrc

 set grepprg=grep\ -nH\ $*
 let g:tex_flavor='latex'
 let g:Tex_DefaultTargetFormat = 'pdf'
 let g:Tex_ViewRule_pdf = 'okular'
 let g:Tex_CompileRule_pdf = /usr/local/bin/latexmk -e
 '$pdflatex=q/pdflatex -interaction=nonstopmode -file-line-error
 -halt-on-error -synctex=1/' -pdf -bibtex $*

 I use latexmk for compilation and you have to set -synctex=1
 somewhere in the compile rules.

 Also, did you try to use the latest vim-latex from the git repository?
 I dont know which version is in the OpenSUSE repositories but okular
 forward search is working with the latest vim-latex version from the
 git repository.

 Peter


 On Thu, May 17, 2012 at 11:40 AM, Filip Kadlec kadl...@fzu.cz wrote:

 Hello,
  I would appreciate if someone could help me to resolve this problem.

 I have installed vim-latex from the OpenSuSE distribution. Most of its
 features work correctly. \ll will start latex translation, and \lv
 launches the viewer. However, \ls , instead of launching the forward
 search, does nothing. I have tried to make it work by entering, in vim:

 :let g:Tex_CompileRule_dvi = 'let'atex -src-specials
 -interaction=nonstopmode $*' '

 and

 TCTarget dvi

 as found in the FAQ. However, this does not help. I understand from the
 mailing list there were some quite recent patches to this behavior, also
 in order to get a single instance of okular, but I am not sure how it is
 best to proceed.

         Thanks in advance for your assistance.



 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Vim-latex-devel mailing list
 Vim-latex-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/vim-latex-devel



 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and threat
 landscape has changed and how IT managers can respond. Discussions will
 include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Vim-latex-devel mailing list
 Vim-latex-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat

Re: [Vim-latex-devel] Forward search with okular

2012-05-20 Thread Peter Vasil
Hi Filip,

If you have something like this i your vimrc

set grepprg=grep\ -nH\ $*
let g:tex_flavor='latex'
let g:Tex_DefaultTargetFormat = 'pdf'
let g:Tex_ViewRule_pdf = 'okular'
let g:Tex_CompileRule_pdf = 'pdflatex --synctex=1 -interaction=nonstopmode $*'

and have a ...synctex.gz (this is the file with all information needed
for forward searching) file in your project folder after compiling the
document,
I have no clue why forward search would not work.

I use Okular version 0.14.2.

Sorry if I cant help you more.

Peter

On Thu, May 17, 2012 at 4:46 PM, Filip Kadlec kadl...@fzu.cz wrote:
 Dear Peter,

  thanks so much for your description. I have updated vim-latex to the latest
 version; installed and activated pathogen, un-installed the distribution
 system-wide vim-latex, and then installed the latest vim-latex:

 ~cd ~/.vim/bundle

 ~/.vim/bundle git clone
 git://vim-latex.git.sourceforge.net/gitroot/vim-latex/vim-latex
 Cloning into vim-latex...
 remote: Counting objects: 4161, done.
 remote: Compressing objects: 100% (1469/1469), done.
 remote: Total 4161 (delta 2718), reused 4045 (delta 2665)
 Receiving objects: 100% (4161/4161), 1003.90 KiB | 774 KiB/s, done.
 Resolving deltas: 100% (2718/2718), done.

 After restarting vim, the scripts appear to be active; :scriptnames
 provides:

 ...
  18: /home/kadlecf/.vim/bundle/vim-latex/plugin/SyntaxFolds.vim
  19: /home/kadlecf/.vim/bundle/vim-latex/plugin/filebrowser.vim
  20: /home/kadlecf/.vim/bundle/vim-latex/plugin/imaps.vim
  21: /home/kadlecf/.vim/bundle/vim-latex/plugin/libList.vim
  22: /home/kadlecf/.vim/bundle/vim-latex/plugin/remoteOpen.vim
 ...

 Also, \ll and \lv work as expected. Alas, \ls still does not work. It only
 states:
 :call Tex_ForwardSearchLaTeX()

 but the okular window does not open. The situation is the same if I source
 the files you sent in the previous post. Not sure if I am not doing
 something wrong...

        With best regards,

                        Filip


 On Thu, 17 May 2012, Peter Vasil wrote:

 On Thu, May 17, 2012 at 1:00 PM, Filip Kadlec kadl...@fzu.cz wrote:

 Peter,
  thanks for your reply.

 Having sourced the lines below into vim, there is some progress. Now,
 when I
 type \ls , three new okular instances will open; one contains the
 compiled
 file while the other two are empty. Each provides an error box, like
 this:

 Could not open /home/kadlecf/Documents/path/file.tex            and
 Could not open /home/kadlecf/Documents/path/40

 where 40 corresponds to the current line in the .tex source.

 This could be the thing with the old version of vim-latex. I just can
 say for the latest vim-latex version from the git-repository that
 forward search works because I made some fixes regarding okular which
 then went into the vim-latex source. Which vim-latex version do you
 use?


 Concerning the option -synctex=1, sorry for my ignorance, but I don't
 know
 where to set it. What exactly does it influence?

 If you have put all lines in your vimrc which I posted in my previous
 email, then the synctex option is already there. This option generates
 the necessary data for forward search. Without this option forward
 search doesn't work and not only in vim-latex. All latex editors use
 the synctex option for forward search.


 Also, I would be ready to install the latest version using the
 git-repository, but I do not know how to proceed...

 I use vim-pathogen [1] for managing my vim plugins. Simply clone the
 vim-latex repository into the bundle directory.
 If you read [1] then you will probably know what I mean with the
 bundle directory.
 The clone command is:
 git clone git://vim-latex.git.sourceforge.net/gitroot/vim-latex/vim-latex

 You could also clone the repoository and copy all files manually to
 ~/.vim/ folder. There is also some help on the vim-latex download page
 [2], where to put all files. But the description is without the
 pathogen plugin.

 [1]: http://www.vim.org/scripts/script.php?script_id=2332
 [2]: http://vim-latex.sourceforge.net/index.php?subject=download


 Hope this helps,
 Peter



  Filip


 On Thu, 17 May 2012, Peter Vasil wrote:

 Hi,

 I use vim-latex with okular and forward search works like a charm.

 I have this in my .vimrc

 set grepprg=grep\ -nH\ $*
 let g:tex_flavor='latex'
 let g:Tex_DefaultTargetFormat = 'pdf'
 let g:Tex_ViewRule_pdf = 'okular'
 let g:Tex_CompileRule_pdf = /usr/local/bin/latexmk -e
 '$pdflatex=q/pdflatex -interaction=nonstopmode -file-line-error
 -halt-on-error -synctex=1/' -pdf -bibtex $*

 I use latexmk for compilation and you have to set -synctex=1
 somewhere in the compile rules.

 Also, did you try to use the latest vim-latex from the git repository?
 I dont know which version is in the OpenSUSE repositories but okular
 forward search is working with the latest vim-latex version from the
 git repository.

 Peter


 On Thu, May 17, 2012 at 11:40 AM, Filip Kadlec kadl...@fzu.cz wrote:


 Hello,
  I would appreciate if someone could help me

Re: [Vim-latex-devel] How to disable menus generated by vim-latex?

2012-07-02 Thread Peter Vasil
Hi,

thre is an entry in the manual for menu option,
http://vim-latex.sourceforge.net/documentation/latex-suite.html#customizing-menus

To dsable Tex menus, set this in your vimrc :

let g:Tex_Menus = 0
let g:Tex_MathMenus = 0


Peter


On Sun, Jul 1, 2012 at 6:53 PM, Alessandro Pezzoni
alessandro_pezz...@lavabit.com wrote:
 On Sun, Jul 01, 2012 at 10:22:41AM -0500, Peng Yu wrote:
 I never use the menus. It is a waste of time to load them up for me.
 Is there a way to disable them?

 I don't know if there is a way to disable only the vim-latex menus, but
 you can put set guioptions-=m in your .gvimrc to disable menus tout
 court.

 Alessandro


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Vim-latex-devel mailing list
 Vim-latex-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/vim-latex-devel

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


Re: [Vim-latex-devel] How to disable menus generated by vim-latex?

2012-07-02 Thread Peter Vasil
Correction,
set this to disable menus:

let g:Tex_Menus = 0
let g:Tex_PackagesMenu = 0

Peter

On Mon, Jul 2, 2012 at 11:53 AM, Peter Vasil
mailing_li...@petervasil.net wrote:
 Hi,

 thre is an entry in the manual for menu option,
 http://vim-latex.sourceforge.net/documentation/latex-suite.html#customizing-menus

 To dsable Tex menus, set this in your vimrc :

 let g:Tex_Menus = 0
 let g:Tex_MathMenus = 0


 Peter


 On Sun, Jul 1, 2012 at 6:53 PM, Alessandro Pezzoni
 alessandro_pezz...@lavabit.com wrote:
 On Sun, Jul 01, 2012 at 10:22:41AM -0500, Peng Yu wrote:
 I never use the menus. It is a waste of time to load them up for me.
 Is there a way to disable them?

 I don't know if there is a way to disable only the vim-latex menus, but
 you can put set guioptions-=m in your .gvimrc to disable menus tout
 court.

 Alessandro


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Vim-latex-devel mailing list
 Vim-latex-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/vim-latex-devel

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


Re: [Vim-latex-devel] Compiling with latexmk does not work as expected

2012-07-04 Thread Peter Vasil
I use latexmk too and it works for me.

I also have an addition -bibtex option set

let g:Tex_CompileRule_pdf = /usr/local/bin/latexmk -bibtex -pdf $*

Peter


On Thu, Jul 5, 2012 at 12:57 AM, Ted Pavlic t...@tedpavlic.com wrote:
 Niels -

 That usually means an error or untrapped warning is being generated. Do you
 have the same problem with other files? Is there any way you could send a
 minimal working (i.e., failing) example TeX? Or could you at least attach
 the log file generated by TeX?

 Thanks -

 --Ted

 --
 Sent from the mobile device of Ted Pavlic
 Please excuse typos, swypos, or very brief responses

 On Jul 4, 2012 1:06 PM, Niels Kobschätzki ni...@kobschaetzki.net wrote:

 Hi,

 I am trying to get something compiled with latexmk and the
 vim-latex-suite. When I invoke latexmk on the file in the command line
 it work w/out any problems. When I invoke the compile in vim I just get:
 Runnning bibtex…
 Ran latex 1 time(s)
 Even when the bib-file or references changed.

 commands for compilation in my .vimrc:
 let g:Tex_MultipleCompileFormats = 'pdf'
 let g:Tex_CompileRule_pdf = 'latexmk -pdf -pvc $*'
 let g:Tex_DefaultTargetFormat='pdf'

 I also tried let g:Tex_CompileRule_pdf = 'latexmk $*'

 My .latexmkrc looks like that:
 $pdflatex = xelatex -synctex=1 -interaction=nonstopmode %O %S;
 $bibtex_use = 2;
 $print_type = 'pdf';
 $pdf_mode = 1;
 $pdf_previewer = open -a /Applications/Skim.app;
 $pdf_update_method = 0;
 $clean_ext = paux lox pdfsync out;
 $force_mode = 1;

 As written before: invoking latexmk on the file in the command line
 latexmk file.tex works as it should, only in vim it doesn't.

 Any ideas?


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Vim-latex-devel mailing list
 Vim-latex-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Vim-latex-devel mailing list
 Vim-latex-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/vim-latex-devel


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel