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
Post a Comment