Re: [Vim-latex-devel] Problems with Tex_ChangeEnvironments insert double \

2016-05-05 Thread Gerd Wachsmuth
Thank you for reporting. This bug is already fixed in the current version of latex-suite, see https://github.com/vim-latex/vim-latex/commit/0c766a7ecf9eda8f616ad2db5741fca98c7181c8 Best Regards, Gerd On 2016-05-05 01:42, Enrique Escalante wrote: > Hello everybody, > > I'm using the LaTeX-Suite

[Vim-latex-devel] Problems with Tex_ChangeEnvironments insert double \

2016-05-04 Thread Enrique Escalante
Hello everybody, I'm using the LaTeX-Suite and I've found a bug ;) Line 781 in envmacros.vim should read else let first = '\begin{' . a:env . '}' let second = '\end{' . a:env . '}' endif instead of else let first = '\\begin{' . a:env . '}' let second = '\\end{' . a:env . '}' en