Re: [Vim-latex-devel] error in tex.vim [solved]

2016-04-24 Thread pierrO
Thank you Mike Richman (I don't understand why I cannot reply to your post on the list) The error seems to be saying the function is already defined. You can redefine the function by placing a ! after 'function'. I think you also need one after 'command' to redefine the corresponding co

[Vim-latex-devel] error in tex.vim

2016-04-24 Thread pierrO
Hi, someone helped me with a script to deal with indenting in templates when :TTemplate is called. 1 """ set paste for TTemplate 2 function TexTemplateWithPasteSet() 3 set paste 4 TTemplate 5 set nopaste 6 endfunction 7 command Template call TexTemplateWi