Re: [Vim-latex-devel] New line in mapping

2012-01-19 Thread Bodo Graumann
Hi, you could also insert a literal line-break (code 13) in vim by typing "Ctrl+V, Enter". this willl show as ^M: call IMAP('SSE', "\\begin{section}{<++>}^M<++>^M\\end{section}^M",'tex') and I think I had to use those double-quotes too, for it to work. best regards, Bodo Am Thu, 19 Jan 2012 09

Re: [Vim-latex-devel] New line in mapping

2012-01-19 Thread Gerd Wachsmuth
Try call IMAP('DEF', '\begin{definition}\<++>\\end{definition}<++>', 'tex') Regards Gerd On 01/18/2012 07:58 PM, abstractd wrote: > How do I change the following > call IMAP('DEF', '\begin{definition}<++>\end{definition}<++>', 'tex') > (in my tex.vim) such that it adds an empty line between begi