Re: [Vim-latex-devel] Adding a map
Brought to you by:
srinathava,
tmaas
From: Srinath A. <sr...@fa...> - 2003-06-25 19:19:41
|
> How do I add a map: > For example, if I want something like > \nomenclature{<++>}<++> to appear in insermode by typing > NOM > This should have been in the documentation of latex-suite. I will add it next time I get a chance... Right now, its documented seperately. Try doing :help imaps As a summary: Use the IMAP() function... Put the following line in your ~/vimfiles/ftplugin/tex.vim: call IMAP('NOM', '\nomenclature{<++>}<++>', 'tex') Srinath |