Re: [Vim-latex-devel] [Contact] diacritics in french
Brought to you by:
srinathava,
tmaas
From: Srinath A. <sr...@fa...> - 2004-03-07 16:26:52
|
On Sun, 7 Mar 2004, Nicolas Roudninski wrote: > I am very bored with the vim-latex-suite version 0.20031216 because > I can\'t use tht letter \"=E9\". I used well with the previous versions > but not with this new one. > > Is there a solution to work with this simple letter ??? Yes, there is a way to type =E9 (<Alt-i>) Unfortunately, its still not documented. Use the following in ~/.vim/ftplugin/tex.vim or any other file which gets sourced _before_ latex-suite: imap <buffer> <somekey> <Plug>Tex_InsertItemOnThisLine Replace <somekey> with the key combination which you want to use to generate the functionality which <M-i> does. It basically inserts an \item command corresponding to the last environment. If you do not want this functionality at all, use <Plug>DeadKeys instead of <somekey> > Ps : I find your work very usefull and I thank you for all your > work. > Thanks! Srinath |