1212
vim-plugins/latex-support at master · spe/vim-plugins · GitHub
Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README for latex-support.vim (Version 1.1.1) / August 15 2014

  *  INSTALLATION
  *  RELEASE NOTES 
  *  FILES
  *  ADDITIONAL TIPS
  *  CREDITS

LaTeX Support implements an LaTeX-IDE for Vim/gVim. It has been written to
considerably speed up writing code in a consistent style.  This is done by
inserting complete statements, comments, idioms, and code snippets.    There
are many additional hints and options which can improve speed and comfort when
writing LaTeX. Please read the documentation.  This plugin can be used with Vim
version 7.x.

=======================================================================================
  INSTALLATION
=======================================================================================

The subdirectories in the zip archive  latex-support.zip  mirror the directory
structure which is needed below the local installation directory $HOME/.vim/
for LINUX/UNIX ($VIM/vimfiles/ for Windows; find the value of $VIM with 
":echo $VIM" from inside Vim).

(0) Save the template files in '$HOME/.vim/latex-support/templates' if
    you have changed any of them.

(1) Copy the zip archive  latex-support.zip to $HOME/.vim and run

      unzip latex-support.zip

(2) Loading of plugin files must be enabled. If not use
      :filetype plugin on
    This is the minimal content of the file '$HOME/.vimrc'. Create one if there
    is none. 

(3) Set at least some personal details into latex-support/templates/Templates 
    by overriding the defaults.
    Please read the documentation to fully understand the template system.

    The files customization.vimrc and customization.gvimrc are replacements or 
    extensions for your .vimrc and .gvimrc ( _vimrc and _gvimrc under Windows).
    You may want to use parts of them. The files are documented. 

(4) Consider additional settings in the file '$HOME/.vimrc'.
    The files customization.vimrc and customization.gvimrc are replacements or 
    extensions for your .vimrc and .gvimrc ( _vimrc and _gvimrc under Windows).
    You may want to use parts of them. The files are documented. 

There are a lot of features and options which can be used and influenced:

  *  use of template files and macros
  *  using and managing personal code snippets
  *  using additional plugins

Restart gVim/Vim generate the help tags 

  :helptags ~/.vim/doc

and look at the latex-support help with

  :help latexsupport 

               +-----------------------------------------------+
               | +-------------------------------------------+ |
               | |    ** PLEASE READ THE DOCUMENTATION **    | |
               | |    Actions differ for different modes!    | |
               | +-------------------------------------------+ |
               +-----------------------------------------------+

Any problems ? See the TROUBLESHOOTING section at the end of the help file
'doc/latexsupport.txt'.

For a system-wide installation please see the help file 'doc/latexsupport.txt'.

=======================================================================================
  RELEASE NOTES 
=======================================================================================

---------------------------------------------------------------------------------------
  RELEASE NOTES FOR VERSION 1.1.1
---------------------------------------------------------------------------------------
- Added some new templates.
- Added 'Latex_SetMapLeader' and 'Latex_ResetMapLeader'.
- Bugfix: Resetting maplocalleader in filetype plug-in after setting it to the value of
  g:Latex_MapLeader.
- Bugfix: Better compatibility with custom mappings
  (use "normal!" and "noremap" consistently).
- Bugfix: Setup of local templates in case of global installation.
- Bugfix: Renamed function which were named "g:*".
- Always load the newest version of the template engine available on 'runtimepath'.

=======================================================================================
  FILES
=======================================================================================

README.latexsupport                This file.

autoload/mmtemplates/core          The template engine.
autoload/mmtoolbox/*               The toolbox (make, ...).

doc/latexsupport.txt               The help file for the local online help. 
doc/templatesupport.txt            The help file for the template system.
doc/toolbox*.txt                   The help files for the toolbox.

ftplugin/make.vim                  Access hotkeys for make(1) in makefiles.
ftplugin/tex.vim                   Suggestion for a filetype plugin.
                                   Defines hotkeys for the make tool.

plugin/latex-support.vim           The LaTeX plugin for Vim/gVim.

latex-support/codesnippets/*       Some LaTeX code snippets as a starting point.

latex-support/templates/*          template files

latex-support/doc/ChangeLog        The change log.

=======================================================================================
  CREDITS
=======================================================================================

Many thanks to Wolfgang Mehner (wolfgang-mehner at web.de) for is template
engine Template Support.

=======================================================================================