How to suppress warnings in vim-latex? -


i want hide couple of problematic warnings in vim-latex, can't seem work out syntax.

i have:

let g:tex_ignoredwarnings =      \'underfull'."\n".     \'overfull'."\n".     \'specifier changed to'."\n".     \'you have requested'."\n".     \'missing number, treated zero.'."\n".     \'there undefined references'."\n".     \'citation %.%# undefined'."\n".     \'double space found.'."\n" let g:tex_ignorelevel = 8 

to me, looks correct per the documentation, "double space found" warning still appears (to clarify, 'still appears' mean it's highlighted on left of screen s>).

any ideas?

the property you're setting should start uppercase letter (g:tex_ignoredwarnings opposed g:tex_ignoredwarnings. way have now, vim-latex using default value g:tex_ignoredwarnings , not desired overrides.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -