" File: latex.vim " Last update: Mon Mar 01 14:39:38 CET 1999 " Availability: This file is available as " " (mirror) " Size: ... " Purpose: Setup file for the editor Vim (Vi IMproved) " Abbreviations and mappings for writing texts in LaTeX " Usage: From \begin{TEST}within Vim use\end{TEST} the command ":source latex.vim". " Author: Sven Guckes guckes@vim.org (guckes@math.fu-berlin.de) " " See also: http://www.math.fu-berlin.de/~guckes/latex/ " =================================================================== " Enclose current visual text (incomplete lines) with environment "ENVNAME" map ,Env `>a\end{ENVNAME}` vmap ,Env ,Env " Enclose current visual text ( complete lines) with environment "ENVNAME" map ,ENV `>o\end{ENVNAME}` vmap ,ENV ,ENV " Center current visual text " vmap ,Center iab ENVNAME center|:normal ,Env " ``>o\end{center} " " Inserting pairs of quotes: map Y" ``'' "EOF