*vimtex.txt* A modern vim plugin for editing LaTeX files. *vimtex* Author: Karl Yngve Lervåg License: MIT license {{{ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. }}} ============================================================================== CONTENTS *vimtex-contents* Introduction |vimtex-introduction| Feature overview |vimtex-features| Requirements |vimtex-requirements| Support for multi-file projects |vimtex-multi-file| Comment on internal tex plugin |vimtex-comment-internal| Usage |vimtex-usage| Default mappings |vimtex-default-mappings| Options |vimtex-options| Commands |vimtex-commands| Map definitions |vimtex-mappings| Insert mode mappings |vimtex-imaps| Events |vimtex-events| Completion |vimtex-completion| Complete labels |vimtex-complete-labels| Complete citations |vimtex-complete-cites| Autocomplete |vimtex-complete-auto| Neocomplete |vimtex-complete-neocomplete| YouCompleteMe |vimtex-complete-youcompleteme| Folding |vimtex-folding| Indentation |vimtex-indent| Syntax highlighting |vimtex-syntax| Navigation |vimtex-navigation| Table of contents |vimtex-toc| Table of labels |vimtex-labels| Latexmk |vimtex-latexmk| Latexmk tricks |vimtex-latexmk-tricks| Lacheck |vimtex-latexmk-lacheck| View |vimtex-view| Synctex |vimtex-synctex| Forward search |vimtex-synctex-forward-search| Backward search |vimtex-synctex-backward-search| Code structure |vimtex-code| FAQ |vimtex-faq| Credits |vimtex-credits| Changelog |vimtex-changelog| ============================================================================== INTRODUCTION *vimtex-introduction* |vimtex| provides convenient functionality for editing LaTeX documents. The main goal of |vimtex| is to be simple, functional, and to be easy to customize and evolve. ----------------------------------------------------------------------------- Feature overview~ *vimtex-features* - Document compilation with `latexmk` - Support for several PDF viewers with forward search - `MuPDF` - `Zathura` - `Okular` - `qpdfview` - `SumatraPDF` - Other viewers are supported through a general interface - Completion of citations and labels - Document navigation through - table of content - table of labels - Word count (through `texcount`) - Motions - Move between sections with `[[`, `[]`, `][`, `]]` - Move between matching delimiters with `%` - Text objects - `ie` `ae` LaTeX environments - `i$` `a$` Inline math structures - `id` `ad` Delimiters - Other mappings - Delete the surrounding command or environment with `dsc`/`dse` - Change the surrounding command or environment with `csc`/`cse` - Toggle starred environment with `tse` - Toggle between e.g. `()` and `\left(\right)` with `tsd` - Close the current environment in insert mode with `]]` - Insert new command with `` - Convenient insert mode mappings for faster typing of e.g. maths - Folding - Indentation - Improved syntax highlighting - Highlight matching delimiters - Support for `biblatex`/`natbib` package - Support for `cleveref` package - Support for `listings` package - Support for `minted` package - Support for `dot2tex` with nested syntax highlighting ------------------------------------------------------------------------------ Requirements~ *vimtex-requirements* `latexmk` http://users.phys.psu.edu/~collins/software/latexmk-jcc |vimtex| uses `latexmk` to compile the LaTeX document. `latexmk` is "a perl script for running LaTeX the correct number of times to resolve cross references, etc; it also runs auxiliary programs (bibtex, makeindex if necessary, and dvips and/or a previewer as requested). It has a number of other useful capabilities, for example to start a previewer and then run latex whenever the source files are updated, so that the previewer gives an up-to-date view of the document. The script runs on both UNIX and MS-WINDOWS (XP, etc)." [Copied from the latexmk page.] For more info, see |vimtex-latexmk|. |clientserver| |vimtex| requires the |clientserver| for the callback functionality to work. The callbacks are used to provide feedback when compilation is finished, as well as to parse the log for errors and warnings and to open the |quickfix| window when necessary. If you use Vim under a terminal in Linux or OSX, then Vim must be started as a command server with the command line option `--servername`, e.g. `vim --servername VIM`. For different ways of ensuring this, see: http://vim.wikia.com/wiki/Enable_servername_capability_in_vim/xterm ------------------------------------------------------------------------------ Support for multi-file projects~ *vimtex-multi-file* |vimtex| supports most multi-file documents. It uses a recursive search algorithm that should find the main LaTeX file in most cases. For special cases, there are several alternative methods for specifying the main file, see below. Note that the priority of the following methods are as follows: 1. Buffer variable 2. TeX root specifier 3. Subfiles package 4. File `.latexmain` specifier 5. Recursive search Recursive search~ The recursive search detects the main LaTeX file by searching for a file in the current and parent directories that includes the present file and that has the `\documentclass` line. This should work in most cases, but it may fail if for instance the project structure is something like this: > path1/main.tex path2/chapter.tex < That is, the main file detection will not work for the file `chapter.tex`, because the main file does not live in the same folder or a parent folder. File .latexmain specifier~ In some cases, it might be preferable to specify the main file by creating an indicator file. The indicator file should be an empty file, and the name must be the name of the desired main file with `.latexmain` appended. An example should make this clear: > path/file.tex path/file.tex.latexmain path/sections/file1.tex path/sections/file2.tex < Here `path/file.tex.latexmain` indicates for `file1.tex` and `file2.tex` that `path/file.tex` is the main LaTeX file. TeX root specifier~ It is also possible to specify the main TeX file with a comment in one of the first five lines of the current file similar to this: > %! TEX root = /path/to/my-main.tex < Note that this method should work for the case where the recursive search does not work. *vimtex-subfiles* Subfiles~ Further, |vimtex| supports the `subfiles` package. That is, the main file is parsed from the `\documentclass` line whenever it has the following format: > \documentclass[main.tex]{subfiles} < Note that this is a special case in that it is only relevant for users who use the `subfiles` package. *b:vimtex_main* Buffer variable~ Finally, the main file may be specified through the buffer variable `b:vimtex_main`. If one uses project specific |vimrc| files, one may then use an |autocmd| to specify the main file through this buffer variable with > autocmd FileType tex let b:vimtex_main = 'main.tex' ------------------------------------------------------------------------------ Comment on internal tex plugin~ *vimtex-comment-internal* Vim ships with some LaTeX support out of the box. In particular, it provides good syntax highlighting (|ft-tex-syntax|), indentation (see the source file $VIMRUNTIME/indent/tex.vim for the documentation), and some sensible options (|ft-tex-plugin|). When |vimtex| is active, it will be used as the main |ftplugin|. It will define the same set of sensible settings as the internal plugin. However, |vimtex| does not provide its own syntax, instead it adds a few minor improvements to |ft-tex-syntax|, see |vimtex-syntax|. |vimtex| also provides its own indentation plugin, see |vimtex-indent|. Vim will generally autodetect filetypes automatically. In most cases this works as expected, however, in some cases it will detect a file with the `tex` suffix as a |plaintex|. To prevent this, one may set the option |g:tex_flavor| in ones `vimrc` file, that is: > let g:tex_flavor = 'latex' ============================================================================== USAGE *vimtex-usage* Default mappings |vimtex-default-mappings| Options |vimtex-options| Commands |vimtex-commands| Map definitions |vimtex-mappings| Insert mode mappings |vimtex-imaps| Events |vimtex-events| ------------------------------------------------------------------------------ Default mappings~ *vimtex-default-mappings* |vimtex| is designed to be controlled by a selection of mappings. Note, though, that most of the mappings are also available as commands, see |vimtex-commands|. Many of the mappings utilize the |maplocalleader|. The right-hand sides are provided as -mappings, see |using-|. For any given map, the default mapping will only be created if it does not already exist. This means that if a user defines a custom mapping, e.g. with > nmap li (vimtex-info) then the corresponding default left-hand side will not be mapped. If one prefers, one may disable all the default mappings through the option |g:vimtex_mappings_enabled|. One must then define custom mappings for all desired features through the listed RHS -maps or by mapping the available commands. In the below list of mappings, LHS is the default mapping, RHS is the corresponding -maps, and MODE indicates in which vim mode the mappings are valid. In addition to the mappings listed below, |vimtex| provides convenient insert mode mappings to make it easier and faster to type mathematical equations. This feature is explained in more detail later, see |vimtex-imaps|. -----------------------------------------------------------~ LHS RHS MODE~ -----------------------------------------------------------~ li |(vimtex-info)| `n` lI |(vimtex-info-full)| `n` lt |(vimtex-toc-open)| `n` lT |(vimtex-toc-toggle)| `n` ly |(vimtex-labels-open)| `n` lY |(vimtex-labels-toggle)| `n` lv |(vimtex-view)| `n` lr |(vimtex-reverse-search)| `n` ll |(vimtex-compile-toggle)| `n` lk |(vimtex-stop)| `n` lK |(vimtex-stop-all)| `n` le |(vimtex-errors)| `n` lo |(vimtex-compile-output)| `n` lg |(vimtex-status)| `n` lG |(vimtex-status-all)| `n` lc |(vimtex-clean)| `n` lC |(vimtex-clean-full)| `n` lx |(vimtex-reload)| `n` dse |(vimtex-delete-env)| `n` dsc |(vimtex-delete-cmd)| `n` cse |(vimtex-change-env)| `n` csc |(vimtex-change-cmd)| `n` tse |(vimtex-toggle-star)| `n` tsd |(vimtex-toggle-delim)| `n` |(vimtex-create-cmd)| `ni` ]] |(vimtex-close-env)| `i` a$ |(vimtex-a$)| `nxo` i$ |(vimtex-i$)| `nxo` ae |(vimtex-ae)| `nxo` ie |(vimtex-ie)| `nxo` ad |(vimtex-ad)| `nxo` id |(vimtex-id)| `nxo` ap |(vimtex-ap)| `nxo` ip |(vimtex-ip)| `nxo` % |(vimtex-%)| `nxo` ]] |(vimtex-]])| `nxo` ][ |(vimtex-][)| `nxo` [] |(vimtex-[])| `nxo` [[ |(vimtex-[[)| `nxo` } |(vimtex-})| `nxo` { |(vimtex-{)| `nxo` -----------------------------------------------------------~ ------------------------------------------------------------------------------ Options~ *vimtex-options* *g:vimtex_enabled* Set to 0 to disable |vimtex|. Default value: Undefined. *g:vimtex_disable_version_warning* |vimtex| will warn you if you are using an unsupported version of Vim. This warning may be disabled by setting this option to a nonzero value. Default value: Undefined. *g:vimtex_complete_enabled* Use this option to disable/enable |vimtex| completion. Default value: 1 *g:vimtex_complete_close_braces* This option controls whether to append a closing brace after a label or a citation has been completed. Default value: 0 *g:vimtex_complete_recursive_bib* This option toggles recursive searching for bibliography files. Note: This feature may lead to a significant lag for large projects. Default value: 0 *g:vimtex_complete_patterns* Define patterns that control when the label and citation completion is triggered. Default value: > let g:vimtex_complete_patterns = { \ 'ref' : '\C\\v\?\(eq\|page\|[cC]\)\?ref\*\?\_\s*{[^{}]*', \ 'bib' : '\C\\\a*cite\a*\*\?\(\[[^\]]*\]\)*\_\s*{[^{}]*', \ }) < *g:vimtex_change_complete_envs* Define a list of environments that will be completed when changing the surrounding environments (see |(vimtex-change-env)|). Default value: > let g:vimtex_change_complete_envs = [ \ 'itemize', \ 'enumerate', \ 'description', \ 'center', \ 'figure', \ 'table', \ 'equation', \ 'multline', \ 'align', \ 'split', \ '\[', \ ] < *g:vimtex_change_toggled_delims* Define a list of delimiters to toggle through with |(vimtex-toggle-delim)|. Default value: > let g:vimtex_change_toggled_delims = [['\\left', '\\right']] < *g:vimtex_change_ignored_delims_pattern* A pattern for delimiters that will be ignored when toggling delimiters, see |(vimtex-toggle-delim)|. Default value: > let g:vimtex_change_ignored_delims_pattern = '\c\\bigg\?' < *g:vimtex_change_set_formatexpr* If enabled, |vimtex| uses a custom |formatexpr| that should handle inline comments. That is, if it is enabled, then comments at end of lines will not be joined with the |gq| command. Default value: 0 *g:vimtex_fold_enabled* Use this option to disable/enable folding. Default value: 1 *g:vimtex_fold_automatic* Turn on/off automatic updating of fold levels. If it is off, one must use the |zx| mapping to update the foldlevels when desired. Note: Automatic updating of fold levels may lead to some lags for large files. Default value: 0 *g:vimtex_fold_envs* Control whether or not to fold environments. Default value: 1 *g:vimtex_fold_parts* List of document parts that should be folded. Default value: > let g:vimtex_fold_parts = [ \ "appendix", \ "frontmatter", \ "mainmatter", \ "backmatter", \ ] < *g:vimtex_fold_preamble* Control whether or not to fold the preamble. Default value: 1 *g:vimtex_fold_sections* List of section constructs that should be folded. Default value: > let g:vimtex_fold_sections = [ \ "part", \ "chapter", \ "section", \ "subsection", \ "subsubsection", \ ] < *g:vimtex_imaps_enabled* Use this option to disable/enable insert mode mappings. Default value: 1 *g:vimtex_imaps_leader* The default leader key for insert mode mappings. Default value: '`' *g:vimtex_imaps_disabled* A list of mappings to disable. That is, any left-hand side that matches a string in this list will not be mapped to its corresponding right-hand side. This may be used to selectively disable one or more from the default list of mappings. Default value: [] *g:vimtex_imaps_snippet_engine* Snippet engine for advanced mappings. May be either 'neosnippet' or 'ultisnips'. Default value: 'ultisnips' *g:vimtex_imaps_list* The list of mappings to generate on start up. Default value: Complicated, please see the source file for exact value `autoload/vimtex/imaps.vim` *g:vimtex_indent_enabled* Use this option to disable/enable |vimtex| indentation. Default value: 1 *g:vimtex_indent_bib_enabled* Use this option to disable/enable |vimtex| indentation of bibliography files. Default value: 1 *g:vimtex_index_hide_line_numbers* If enabled, then line numbers will be hidden in the index windows. That is, |nonumber| and |norelativenumber| will be set locally. Default value: 1 *g:vimtex_index_resize* Whether or not to automatically resize vim when index windows are opened. Note: This option makes sense if the index window is vertically split. Default value: 0 *g:vimtex_index_show_help* Whether to display the index help text. Default value: 1 *g:vimtex_index_split_pos* Define where index windows should be opened. Default value: 'vert leftabove' *g:vimtex_index_split_width* For vertically split windows: Set width of index window. Default value: 30 *g:vimtex_labels_enabled* Use this option to disable/enable table of labels. Default value: 1 *g:vimtex_toc_enabled* Use this option to disable/enable table of contents (ToC). Default value: 1 *g:vimtex_toc_fold* Turn on folding of ToC entries. Default value: 0 *g:vimtex_toc_fold_levels* This option controls the number of fold levels that will be used if the folding of the ToC is enabled. Default value: 1 *g:vimtex_toc_show_preamble* Whether to include the preamble in the ToC. Default value: 1 *g:vimtex_toc_show_numbers* Set whether or not to show section numbers in ToC. Note: The numbers may also be toggled inside the ToC window with the `s` keybinding. Default value: 1 *g:vimtex_toc_number_width* Set the display width of numbers in the ToC. If it is set to 0, then the width is set based on the section depth, see |g:vimtex_toc_secnumdepth|. Default value: 0 *g:vimtex_toc_secnumdepth* Define the number of section levels to display. Set level corresponding to the desired latex variable `secnumdepth`. For more info on `secnumdepth`, see http://en.wikibooks.org/w/index.php?title=LaTeX/Document_Structure. Note: The variable may be updated inside the ToC window with the mappings `+` and `-`. Default value: 3 *g:vimtex_mappings_enabled* Control whether or not to load the default mappings. Default value: 1 *g:vimtex_motion_enabled* This option enables the motion mappings `%`, `[[`, `[]`, `][`, and `]]`. It also enables the highlighting of matching delimiters. Default value: 1 *g:vimtex_motion_matchparen* Enable highlighting of matching delimiters. Note: This is an improved version of |matchparen|. It should be possible to keep |matchparen| activated, which matches delimiters listed in 'matchpairs'. The |vimtex| specific version will also match LaTeX specific delimiters, which is not possible with |matchparen|. Default value: 1 *g:vimtex_latexmk_enabled* Use this option to disable/enable the `latexmk` interface |vimtex-latexmk|. Default value: 1 *g:vimtex_latexmk_build_dir* This option sets the compilation build directory. It corresponds to the `-output-directory` option in `latexmk`. If the path is a relative path, then it will be considered relative to the main project file. Note that this option only works with `latexmk` version 4.27 and later. Default value: '' *g:vimtex_latexmk_callback* If enabled, this option tells `latexmk` to run |vimtex#latexmk#callback| after compilation is finished. Note 1: This feature requires |clientserver|. Note 2: Callbacks are only possible when continuous mode is active, see |g:vimtex_latexmk_continuous|. Note 3: The callback is run with the vim executable defined by |g:vimtex_latexmk_progname|. Default value: 1 *g:vimtex_latexmk_continuous* If enabled, `latexmk` will run in continuous mode, i.e. with the `-pvc` argument. This means that the document is compiled every time a document file has been changed. If disabled, `latexmk` will run single shot compilations. Default value: 1 *g:vimtex_latexmk_file_line_error* If enabled, |vimtex| will append the `-file-line-error` argument to `latexmk`. This will help when parsing the log for errors and warnings, and should be turned on in most cases. Default value: 1 *g:vimtex_latexmk_background* If continuous mode is disabled, then this option may be used to set whether single shot compilations should be run in the foreground or the background. Default value: 0 *g:vimtex_latexmk_options* A string of options that will be passed on to `latexmk`. Note: Options may also be specified indirectly to `latexmk` through both a global and a project specific `.latexmkrc` file. Default value: '-pdf' *g:vimtex_latexmk_progname* Path to vim executable. This is used for the callback functionality, and it must be set correctly in order for the callback function to work. The default value should work correctly in most cases, but in some cases, e.g. for MacVim, one might need to set it manually to get the callbacks to work as expected. Default value: |v:progpath| if it exists, else |v:progname|. *g:vimtex_quickfix_autojump* This option controls if vim should automatically jump to the first error whenever the |quickfix| window is opened. Note: This option does not go well with continuous compilation and callbacks, since the callbacks will open the quickfix window if there are errors. Thus I recommend to keep it disabled for continuous compilation, and rather enable it if one prefers single shot compilations. Default value: 0 *g:vimtex_quickfix_fix_paths* Some users do not like to use |autochdir|. The file names in LaTeX error messages are relative, thus the current working directory is important. If this option is enabled, then the paths for the quickfix entries are fixed so that they should work with |noautochdir|. Note: This option uses a |QuickFixCmdPost| autocommand in order to update the quickfix list through |setqflist|. Thus, the option may have side effects if one edits other file types in the same Vim instance. The option is therefore disabled by default. Default value: 0 *g:vimtex_quickfix_ignore_all_warnings* This option controls whether or not LaTeX warnings should be included in the |quickfix| window. LaTeX errors will always be included. Default value: 0 *g:vimtex_quickfix_ignored_warnings* A list of warning messages that should be ignored. The list is a list of strings. Any LaTeX warning that contains a string in the list will be ignored. To ignore some common LaTeX warnings, try the following setting: > let g:vimtex_quickfix_ignored_warnings = [ \ 'Underfull', \ 'Overfull', \ 'specifier changed to', \ ] < Note: This option is only relevant if |g:vimtex_quickfix_ignore_all_warnings| is disabled. Default value: [] *g:vimtex_quickfix_mode* This option controls the behaviour of the |quickfix| window in case errors and/or warnings are found. The recognized options are: Value Effect ~ 0 The quickfix window is never opened automatically. 1 The quickfix window is opened automatically when there are errors, and it becomes the active window. 2 The quickfix window is opened automatically when there are errors, but it does not become the active window. Note: The quickfix window will only be opened automatically if both the continuous mode and the callbacks are active, see |g:vimtex_latexmk_continuous| and |g:vimtex_latexmk_callback|. Default value: 2 *g:vimtex_quickfix_open_on_warning* Control whether or not to automatically open the |quickfix| window in case there are warning messages and no error messages. Note: The quickfix window will only be opened automatically if both the continuous mode and the callbacks are active, see |g:vimtex_latexmk_continuous| and |g:vimtex_latexmk_callback|. Default value: 1 *g:vimtex_view_enabled* Use this option to disable/enable the |vimtex| viewer interface. Default value: 1 *g:vimtex_view_method* Set the viewer method. The general viewer |vimtex_viewer_general| defines a generic interface that allows sufficient customization for most viewer applications. However, a few applications require some special attention, and so |vimtex| provides a couple of custom viewers: |vimtex_viewer_mupdf| and |vimtex_viewer_zathura|. Possible values: 'general' (default) 'mupdf' 'zathura' *vimtex_viewer_general* This is a generic interface where the viewer application is specified through |g:vimtex_view_general_viewer| and the viewer options are given with |g:vimtex_view_general_options|. After successful compilation with `latexmk`, the viewer is started with the options provided by |g:vimtex_view_general_options_latexmk|. The interface allows the general viewer to support forward search with a lot of different applications: *vimtex_viewer_okular* https://okular.kde.org/ Okular is a very feature rich PDF viewer that supports forward and backward search. Backward search must be set up from the viewer. > let g:vimtex_view_general_viewer = 'okular' let g:vimtex_view_general_options = '--unique @pdf\#src:@line@tex' let g:vimtex_view_general_options_latexmk = '--unique' < *vimtex_viewer_qpdfview* https://launchpad.net/qpdfview qpdfview is a tabbed document viewer. It supports forward search. Backward search must be set up from the viewer. > let g:vimtex_view_general_viewer = 'qpdfview' let g:vimtex_view_general_options = '--unique @pdf\#src:@tex:@line:@col' let g:vimtex_view_general_options_latexmk = '--unique' < *vimtex_viewer_skim* http://skim-app.sourceforge.net/ Skim is a PDF reader and note-taker for OS X. It is designed to help you read and annotate scientific papers in PDF, but is also great for viewing any PDF file. > let g:vimtex_view_general_viewer \ = '/Applications/Skim.app/Contents/SharedSupport/displayline' let g:vimtex_view_general_options = '@line @pdf @tex' < Note: For some documentation on how to get backward search to work, see: http://sourceforge.net/p/skim-app/wiki/TeX_and_PDF_Synchronization. *vimtex_viewer_sumatrapdf* http://www.sumatrapdfreader.org/free-pdf-reader.html SumatraPDF is a PDF viewer for windows that is powerful, small, portable and starts up very fast. It supports forward search. Backward search must be set up from the viewer. > let g:vimtex_view_general_viewer = 'SumatraPDF' let g:vimtex_view_general_options = '-forward-search @tex @line @pdf' let g:vimtex_view_general_options_latexmk = '-reuse-instance' < Note: It is possible to set up inverse search for SumatraPDF through the command line. This can be utilized to set the correct |servername| for inverse search: > let g:vimtex_view_general_viewer = 'SumatraPDF -reuse-instance ' \ . '-inverse-search "gvim --servername ' . v:servername \ . ' --remote-send \"^^' \ . ':drop \%f^:\%l^:normal\! zzzv^' \ . ':execute ''drop '' . fnameescape(''\%f'')^' \ . ':\%l^:normal\! zzzv^' \ . ':call remote_foreground('''.v:servername.''')^\""' < *vimtex_viewer_mupdf* http://www.mupdf.com/ A very minimalistic and quick PDF viewer. Supports forward and backward search. Backward search is available with |VimtexRSearch|, which is mapped to 'lr'. One may also define a set of keys that is sent to MuPDF on startup with |g:vimtex_view_mupdf_send_keys|. Note: Both forward and backward search requires `xdotool` to work. Forward search will only take you to the correct page. Backward search will take you to the line in Vim that corresponds to the first line of the current page in MuPDF. *vimtex_viewer_zathura* https://pwmt.org/projects/zathura/ Zathura is like MuPDF a very fast and minimalistic viewer, but it allows more user configuration. Zathura supports forward search and backward search. Note: Forward search requires `xdotool` to work properly, in order to not open a new Zathura instance for invocation of |VimtexView|. *g:vimtex_view_general_viewer* Use generic viewer application, see |vimtex_viewer_general|. Default value: Linux: `xdg-open` Mac: `open` *g:vimtex_view_general_options* Set options for the specified general viewer, see |vimtex_viewer_general|. The options are parsed to substitute the following keywords: `@pdf` Path to pdf file `@tex` Path to tex file `@line` Current line number `@col` Current column number Default value: '@pdf' *g:vimtex_view_general_options_latexmk* Set options that are passed on to `latexmk` for the specified general viewer, see |vimtex_viewer_general|. This allows to send options that ensures a unique viewer, e.g. with |vimtex_viewer_qpdfview|. Default value: '' *g:vimtex_view_mupdf_options* Set options for mupdf (|vimtex_viewer_mupdf|). Default value: '' *g:vimtex_view_zathura_options* Set options for zathura (|vimtex_viewer_zathura|). Default value: '' *g:vimtex_view_mupdf_send_keys* A string of keys that will be sent to MuPDF just after the PDF file has been opened. Default value: '' *g:vimtex_syntax_minted* A list that contains dictionaries for each supported language. A language dictionary should be something similar to the following: > { 'lang' : NAME, 'syntax' : SYNTAX-FILE-NAME, 'ignored' : IGNORED-GROUPS } < If the `syntax` entry is not present, then the `lang` entry is used as name of the syntax file. The `ignored` entry is also optional, and is used to name syntax groups to ignore in the minted region. Default value: [] Example for some languages: > let g:vimtex_syntax_minted = [ \ { \ 'lang' : 'c', \ }, \ { \ 'lang' : 'cpp', \ 'environments' : ['cppcode', 'cppcode_test'], \ }, \ { \ 'lang' : 'csharp', \ 'syntax' : 'cs' \ }, \ { \ 'lang' : 'python', \ 'ignore' : [ \ 'pythonEscape', \ 'pythonBEscape', \ ], \ } \] ------------------------------------------------------------------------------ Commands~ *vimtex-commands* *VimtexInfo* *(vimtex-info)* :VimtexInfo Show information that is stored by vimtex about the current LaTeX project (available mostly for debug purposes). *VimtexInfo!* *(vimtex-info-full)* :VimtexInfo! Show information that is stored by vimtex about all open LaTeX projects (available mostly for debug purposes). *VimtexRefreshFolds* :VimtexRefreshFolds Refresh folds, see |vimtex-zx|. *VimtexTocOpen* *(vimtex-toc-open)* :VimtexTocOpen Open table of contents. *VimtexTocToggle* *(vimtex-toc-toggle)* :VimtexTocToggle Toggle table of contents. *VimtexLabelsOpen* *(vimtex-labels-open)* :VimtexLabelsOpen Open table of labels. *VimtexLabelsToggle* *(vimtex-labels-toggle)* :VimtexLabelsToggle Toggle table of labels. *VimtexCompile* *(vimtex-compile)* :VimtexCompile Starts compilation, either in continuous mode or in single shot mode, depending on the value of |g:vimtex_latexmk_continuous|. *VimtexCompileToggle* *(vimtex-compile-toggle)* :VimtexCompileToggle Toggles compilation. Only useful when continuous mode is enabled (|g:vimtex_latexmk_continuous|). *VimtexCompileSS* *(vimtex-compile-ss)* :VimtexCompileSS Start single shot compilation in background. *VimtexCompileSS!* :VimtexCompileSS! Like |VimtexCompileSS|, but in foreground. *VimtexOutput* *(vimtex-compile-output)* :VimtexOutput Open file where `latexmk` output is redirected. *VimtexStop* *(vimtex-stop)* :VimtexStop Stop compilation for the current project. *VimtexStopAll* *(vimtex-stop-all)* :VimtexStopAll Stop compilation for all open projects in the current vim instance. *VimtexStatus* *(vimtex-status)* :VimtexStatus Show compilation status for current project. *VimtexStatus!* *(vimtex-status-all)* :VimtexStatus! Show compilation status for all open projects in the current vim instance. *VimtexClean* *(vimtex-clean)* :VimtexClean Clean auxilliary files *VimtexClean!* *(vimtex-clean-full)* :VimtexClean! Clean auxilliary files, include output files *VimtexErrors* *(vimtex-errors)* :VimtexErrors Open |quickfix| window if there are errors or warnings. *VimtexLacheck* *(vimtex-lacheck)* :VimtexLacheck Run `lacheck` to check document for errors. *VimtexView* *(vimtex-view)* :VimtexView View `pdf` for current project, perform forward search if available. *VimtexRSearch* *(vimtex-reverse-search)* :VimtexRSearch Do reverse search (only available for MuPDF viewer). *VimtexReload* *(vimtex-reload)* :VimtexReload Reload |vimtex| scripts. This is primarely useful when developing and debugging |vimtex| itself. *VimtexWordCount* :VimtexWordCount Shows the number of words in the current project. The count is created with `texcount` through a call on the main project file similar to: > texcount -nosub -sub -merge FILE < *VimtexWordCount!* :VimtexWordCount! Similar to |VimtexWordCount|, but show separate reports for included files. I.e. presents the result of > texcount -nosub -sub -inc FILE < ------------------------------------------------------------------------------ Map definitions~ *vimtex-mappings* *vimtex-zx* When |vimtex| folding is enabled, then |vimtex| remaps |zx| and |zX| in such that the folds are refreshed appropriately. *(vimtex-delete-env)* *(vimtex-change-env)* Delete/Change surrounding environment. *(vimtex-delete-cmd)* *(vimtex-change-cmd)* Delete/Change surrounding command. Note: (vimtex-delete-cmd) depends on |surround.vim| (https://github.com/tpope/vim-surround). *(vimtex-toggle-star)* Toggle starred environment. *(vimtex-toggle-delim)* Toggle delimiters, for instance between `(...)` and `\left(...\right)`. The behaviour is controlled through |g:vimtex_change_toggled_delims| and |g:vimtex_change_ignored_delims_pattern|. *(vimtex-create-cmd)* Convert current word into a command. This works in both normal and insert mode. *(vimtex-close-env)* Close the current environment (insert mode). *(vimtex-a$)* Text object for inline math (inclusive). *(vimtex-i$)* Text object for inline math (exclusive). *(vimtex-ae)* Text object for environments (inclusive). *(vimtex-ie)* Text object for environments (exclusive). *(vimtex-ad)* Text object for delimiters (inclusive). *(vimtex-id)* Text object for delimiters (exclusive). *(vimtex-ap)* Text object for paragraphs (inclusive). *(vimtex-ip)* Text object for paragraphs (exclusive). *(vimtex-%)* Find matching pair. *(vimtex-]])* Section forward (inclusive). *(vimtex-][)* Section forward (exclusive). *(vimtex-[])* Section backward (inclusive). *(vimtex-[[)* Section backward (exclusive). *(vimtex-})* Paragraph forward. *(vimtex-{)* Paragraph backward. ------------------------------------------------------------------------------ Map definitions~ *vimtex-imaps* The following feature is optional. It is enabled by default, but may be disabled with |g:vimtex_imaps_enabled|. Some LaTeX commands are very common, and so it is both natural and convenient to have insert mode mappings/abbreviations for them. |vimtex| therefore provides a list of such mappings that are enabled by default, see |g:vimtex_imaps_list|. Most of the mappings utilize a map leader defined by |g:vimtex_imaps_leader|. Also, many of the mappings are only active inside mathematical environments. Some of the default mappings utilize a snippet engine, either the function |UltiSnips#Anon| from |UltiSnips| or the function |neosnippet#anonymous| from |neosnippet|, in order to provide a more advanced snippet-like functionality. This is meant to be used for very simple things. For instance, the sequence `((` expands directly to `\left(|\right)` (though only when inside a math environment). Both snippet engines then allow a trigger key to jump out of the snippet. Note that only |neosnippet| allows nested snippets. However, the |neosnippet#anonymous| function was only very recently added to |neosnippet|, and so it requires a recent version in order to work. See also the option |g:vimtex_imaps_snippet_engine|. It is of course possible to customize the list of mappings. First, one may specifically disable a default mapping through |g:vimtex_imaps_disabled|. Second, one may specify |g:vimtex_imaps_list|, which will overwrite the default list. Finally, one may add new maps through calls to the function |vimtex#imap#add_map|. The following are some examples of how to customize the mappings: > " Disable mapping let g:vimtex_imaps_disabled = [''] " Define three of the default mappings let g:vimtex_imaps_list = [ \ { 'lhs_rhs' : ['__', '_\{$1\}'], \'leader' : '', \'wrapper' : 's:wrap_math_ultisnips'}, \ { 'lhs_rhs' : ['^^', '^\{$1\}'], \'leader' : '', \'wrapper' : 's:wrap_math_ultisnips'}, \ { 'lhs_rhs' : ['((', '\left($1\right)'], \'leader' : '', \'wrapper' : 's:wrap_math_ultisnips'}, \] " Add custom mapping through vimtex#imap#add_map call vimtex#imaps#add_map({ \ 'lhs_rhs' : [ 'v', '\vec{$1}'], \ 'wrapper' : 's:wrap_math_ultisnips'}) < *vimtex#imaps#add_map* This function is used to add new insert mode mappings. It takes a single dictionary argument: > map = { \ 'lhs_rhs' : [lhs, rhs], \ 'leader' : leader_key, \ 'wrapper' : function_name \ } Explanation of the keys: lhs_rhs~ The only mandatory argument: It is a list with two elements, `lhs` and `rhs`, respectively. If nothing else is specified, |vimtex#imaps#add_map| simply creates an insert mode mapping from `lhs` to `rhs`. leader~ Custom leader key. If the key is not present, then |g:vimtex_imaps_leader| is used as leader key. wrapper~ The name of a wrapper function that is applied to `rhs`. Three functions are available from |vimtex|: `s:wrap_math` Only define `rhs` if inside a math environment. `s:wrap_snippet` Send `rhs` through the chosen snippet engine in order to create an anonymous snippet. See |g:vimtex_imaps_snippet_engine| for more details. `s:wrap_math_snippet` Same as `s:wrap_snippet`, except it is only expanded when inside a math environment. Of course, one may use custom wrapper functions. To write a custom wrapper function, please see the source for examples on how the |vimtex| wrappers are written. ------------------------------------------------------------------------------ Events~ *vimtex-events* |vimtex| defines some events that may be used for further customization through |autocmd|s, in particular the |User| autocmd. *VimtexEventQuit* This event is triggered when the last buffer for a particular LaTeX project is exited. The event may be used for instance to issue a |VimtexClean| command when exiting. *VimtexEventInitPost* This event is triggered after |vimtex| initialization is completed. It may be used to automatically start compiling a document. Examples: > augroup vimtex_config au! au User VimtexEventQuit VimtexClean au User VimtexEventInitPost VimtexCompile augroup END ============================================================================== COMPLETION *vimtex-completion* If |g:vimtex_complete_enabled| is 1 (default), then |vimtex| sets the 'omnifunc' to provide omni completion, see |compl-omni|. Omni completion is then accessible with |i_CTRL-X_CTRL-O|. The omni completion completes both labels and citations. If desired, one may set |g:vimtex_complete_close_braces|, which makes the completion include closing braces. Associated settings: |g:vimtex_complete_enabled| |g:vimtex_complete_patterns.ref| |g:vimtex_complete_patterns.bib| |g:vimtex_complete_close_braces| |g:vimtex_complete_recursive_bib| ------------------------------------------------------------------------------ Complete labels~ *vimtex-complete-labels* Label completion is triggered by '\ref{' commands as defined with |g:vimtex_complete_patterns.ref|. The completion parses every relevant aux file to gather the completion candidates. This is important, because it means that the completion only works when the LaTeX document has been compiled. As an example: > \ref{sec: offers a list of all matching labels, with their associated value and page number. The label completion matches: 1. labels: > \ref{sec: < 2. numbers: > \eqref{2 < 3. labels and numbers together (separated by whitespace): > \eqref{eq 2 ------------------------------------------------------------------------------ Complete citations~ *vimtex-complete-cites* Citation completion is triggered by '\cite{' commands as defined with |g:vimtex_complete_patterns.bib|. The completion parses included bibliography files (`*.bib`) and `thebibliography` environments to gather the completion candidates. As an example, assume that a bibliography file is included with the following entry: > @book { knuth1981, author = "Donald E. Knuth", title = "Seminumerical Algorithms", publisher = "Addison-Wesley", year = "1981" } Then the bibliography key `knuth1981` will be completed with e.g.: > \cite{Knuth 1981 \cite{algo \cite{Don.*Knuth In particular, note that regular expressions (or vim patterns) can be used after '\cite{' to search for candidates. ------------------------------------------------------------------------------ Autocomplete~ *vimtex-complete-auto* Vim does not provide automatic completion by itself, but there exist at least two good plugins that provide this: |neocomplete| and |youcompleteme|. See below for descriptions on how to setup these with |vimtex|. neocomplete~ *vimtex-complete-neocomplete* |neocomplete| is my preferred choice for an automatic completion engine in vim. The plugin is available here: https://github.com/Shougo/neocomplete.vim. The following options may be used to enable automatic completion for LaTeX documents with |neocomplete| and |vimtex|s omni completion function: > if !exists('g:neocomplete#sources#omni#input_patterns') let g:neocomplete#sources#omni#input_patterns = {} endif let g:neocomplete#sources#omni#input_patterns.tex = \ '\v\\\a*(ref|cite)\a*([^]]*\])?\{([^}]*,)*[^}]*' < YouCompleteMe~ *vimtex-complete-youcompleteme* |youcompleteme| is probably the most popular code-completion engine for Vim. The github repository is here: https://github.com/Valloric/YouCompleteMe. It is described as: > YouCompleteMe is a fast, as-you-type, fuzzy-search code completion engine > for Vim. It has several completion engines: an identifier-based engine that > works with every programming language, a semantic, Clang [3]-based engine > that provides native semantic code completion for the C-family languages, > a Jedi [4]-based completion engine for Python, an OmniSharp [5]-based > completion engine for C# and an omnifunc-based completer that uses data from > Vim's omnicomplete system to provide semantic completions for many other > languages (Ruby, PHP etc.). To enable automatic completion with |youcompleteme|, use the following options: if !exists('g:ycm_semantic_triggers') let g:ycm_semantic_triggers = {} endif let g:ycm_semantic_triggers.tex = [ \ 're!\\[A-Za-z]*(ref|cite)[A-Za-z]*([^]]*])?{([^}]*, ?)*' \ ] ============================================================================== FOLDING *vimtex-folding* |vimtex| can fold documents according to the LaTeX structure (part, chapter, section and subsection). Folding is turned on by default, but it can be disabled if desired (|g:vimtex_fold_enabled|). When folding is enabled and a LaTeX document is opened, the document is parsed once in order to define the highest fold level based on which parts (such as frontmatter, backmatter, and appendix) and section types (chapter, section, etc.) are present. If the document has been edited and a new fold level is required (or has become redundant), then the mapping `zx` can be used to refresh the fold level settings (see |vimtex-zx|). In order to get slightly cleaner fold text, I recommend setting the global 'fillchars' option. To preserve the default vertical separator and only change the fold filler, use e.g.: > set fillchars=vert:|,fold:\ Associated settings: |g:vimtex_fold_enabled| |g:vimtex_fold_automatic| |g:vimtex_fold_preamble| |g:vimtex_fold_parts| |g:vimtex_fold_sections| |g:vimtex_fold_envs| ============================================================================== INDENTATION *vimtex-indent* *vimtex-bib-indent* |vimtex| provides custom indentation functions both for LaTeX documents and for bibliography files (`.bib` files). Associated settings: |g:vimtex_indent_enabled| |g:vimtex_indent_bib_enabled| ============================================================================== SYNTAX HIGHLIGHTING *vimtex-syntax* Vim ships with syntax hightlighting for LaTeX documents out of the box, please see ||ft-tex-syntax|. |vimtex| therefore does not provide its own syntax highlighting. However, |vimtex| does add some minor improvements: - Support for `biblatex` and `natbib` package - Support for `cleveref` package - Improved highlighting of `listings` package - Nested syntax highlighting for `dot2tex` - Nested syntax highlighting for `minted` (see |g:vimtex_syntax_minted|) ============================================================================== NAVIGATION *vimtex-navigation* *vimtex-index* The |vimtex-index| is an interface that is used to display lists and indexes in vertically or horizontally split windows. It supports custom keybindings inside the index window, including actions on the list elements. The position of the window is controlled by |g:vimtex_index_split_pos|. By default, the top of the buffer will display help text to explain the local keybindings. This may be turned off with |g:vimtex_index_show_help|. The |vimtex-index| interface is used by the table of contents |vimtex-toc| and the table of labels |vimtex-labels|. Associated settings: |g:vimtex_index_hide_line_numbers| |g:vimtex_index_resize| |g:vimtex_index_show_help| |g:vimtex_index_split_pos| |g:vimtex_index_split_width| ------------------------------------------------------------------------------ Table of contents~ *vimtex-toc* |vimtex-toc| shows a table of contents (ToC) for the current LaTeX document. The ToC entries may be activated/jumped to with or . The local keybindings are described if |g:vimtex_index_show_help| is enabled. Associated settings: |g:vimtex_toc_enabled| |g:vimtex_toc_fold| |g:vimtex_toc_fold_levels| |g:vimtex_toc_number_width| |g:vimtex_toc_show_preamble| |g:vimtex_toc_show_numbers| |g:vimtex_toc_secnumdepth| ------------------------------------------------------------------------------ Table of labels~ *vimtex-labels* |vimtex-labels| shows a table of labels similar to the ToC. The table entries may be filtered with the `f` keybinding. Filters may be removed with the `c` keybinding. Associated settings: |g:vimtex_labels_enabled| ============================================================================== LATEXMK *vimtex-latexmk* http://users.phys.psu.edu/~collins/software/latexmk-jcc > latexmk is a perl script for running LaTeX the correct number of times to > resolve cross references, etc; it also runs auxiliary programs (bibtex, > makeindex if necessary, and dvips and/or a previewer as requested). It has > a number of other useful capabilities, for example to start a previewer and > then run latex whenever the source files are updated, so that the previewer > gives an up-to-date view of the document. The script runs on both UNIX and > MS-WINDOWS (XP, etc). |vimtex| uses `latexmk` to compile the LaTeX document. It utilizes by default the preview continuous mode. This means that after the compilation is turned on, `latexmk` will automatically recompile when any LaTeX project file is changed. If one prefers to have single shot compilations, one may disable the continuous mode with |g:vimtex_latexmk_continuous|. If it is disabled, then the option |g:vimtex_latexmk_background| may be used to decide if single shot compilation should run in the foreground or the background. Regardless of the |g:vimtex_latexmk_continuous| option, single shot compilation may always be issued with |VimtexCompileSS|. If vim is compiled with the |+clientserver| option and if |g:vimtex_latexmk_callback| is enabled (which it is by default), then compilation errors will be parsed automatically. This is done by utilizing the tricks explained in |vimtex-latexmk-tricks|. Note that this only works for continuous compilation mode. One can always check for compilation erors with |VimtexErrors|. Associated settings: |g:vimtex_latexmk_enabled| |g:vimtex_latexmk_callback| |g:vimtex_latexmk_autojump| |g:vimtex_latexmk_continuous| |g:vimtex_latexmk_background| |g:vimtex_latexmk_options| ------------------------------------------------------------------------------ Latexmk tricks~ *vimtex-latexmk-tricks* One may parse options to `latexmk` through |g:vimtex_latexmk_options|. However, one may also configure `latexmk` explicitly through a global `~/.latexmkrc` file, or a project specific `.latexmkrc` file. A particular set of options are very convenient for a good coupling between `latexmk` and Vim: `$compiling_cmd`, `$success_cmd`, and `$failure_cmd`. These options can be used to specify commands that are run by `latexmk` before and after compilation. This is used by |vimtex| to achieve callbacks after compilation has finished with something like this: > $success_cmd = "gvim --remote-expr 'vimtex#latexmk#callback(1)'"; $failure_cmd = "gvim --remote-expr 'vimtex#latexmk#callback(0)'"; Another neat way to use this is to use `xdotool` to change the window title of the viewer to indicate the compilation status: > $compiling_cmd = "xdotool search --name \"%D\" " . "set_window --name \"%D compiling...\""; $success_cmd = "xdotool search --name \"%D\" " . "set_window --name \"%D OK\""; $failure_cmd = "xdotool search --name \"%D\" " . "set_window --name \"%D FAILURE\""; Note: If you define these options similar to the above `xdotool` trick and still want to enable the |vimtex| callbacks, then one must include a semicolon at the end of the `cmd` strings so that |vimtex| may append safely to the options. Note: More info on `xdotool` here: http://www.semicomplete.com/projects/xdotool. ------------------------------------------------------------------------------ Lacheck~ *vimtex-latexmk-lacheck* After compilation of a LaTeX document, the log file will contain errors that are parsed by |vimtex| as explained above. However, there are syntax checkers for LaTeX. |vimtex| provides a simple interface to `lacheck` for checking LaTeX manuscripts for errors. This is available through |VimtexLacheck|. ============================================================================== VIEW *vimtex-view* |vimtex| provides the command |VimtexView| to open the desired viewer. The command is mapped to 'lv' by default. The list of supported viewers are given in the description of |g:vimtex_view_method|. For supported viewers, |VimtexView| will also perform forward search when the viewer is opened. Associated settings: |g:vimtex_view_enabled| |g:vimtex_view_method| |g:vimtex_view_general_viewer| |g:vimtex_view__options| ------------------------------------------------------------------------------ Synctex support~ *vimtex-synctex* Synctex is a tool that enables synchronization of the text editor position and the pdf viewer position. The tool may be used to add mappings in vim to go to the current position in the compiled pdf document (forward search), and also to go from a specific position in the pdf file to the corresponding position in vim (inverse/backward search). To make synctex work, one must enable synctex manually by adding the line > $pdflatex = 'pdflatex -synctex=1 %O %S'; to `~/.latexmkrc`. ------------------------------------------------------------------------------ Forward search~ *vimtex-synctex-forward-search* For supported viewers, |VimtexView| (lv) will issue a forward search if the viewer is already opened. The forward search will take you to the page or position in the viewer that corresponds to the current line in your vim session. See |g:vimtex_view_method| for a list of supported viewers. ------------------------------------------------------------------------------ Backward search~ *vimtex-synctex-backward-search* *vimtex-synctex-inverse-search* In supported viewers one may set up backward or inverse search. When correctly set up, this allows one to go directly from a selected line in the viewer (typically by dobbel clicking with the mouse or something similar) to the corresponding line inside the Vim instance. Backward search is typially set up inside the specific viewer through an option named something like "inverse search command-line". A standard value for the option is: > gvim --remote-silent +%l "%f" Note: Inverse search relies on the |clientserver| functionality of vim. Each instance of vim runs its own server. The above mentioned standard value implies the default server name, which might not be the actual name of the server for the vim instance you are using. Note: For backward search to work on windows, one must ensure that the folder that contains `gVim.exe` is in your `%PATH%` environment variable. ============================================================================== CODE STRUCTURE *vimtex-code* The |vimtex| code is based on the |autoload| feature of vim. For each new latex buffer, the function *vimtex#init* initializes the variables and functionalities based on the desired options |vimtex-options|. The first run performs some global initialization, which is mainly to define autocommands. Other functionality is provided by additional autoloaded scripts. Every additional script should have an initialization script that sets default commands and mappings, creates autocommands and performs other necessary initialization. This initialization script is then called from 'vimtex#init'. For each LaTeX project that is opened, a |Dictionary| is created and added to the list 'g:vimtex_data'. The dictionary is initialized with data tied to the current project. The dictionary is also linked to the buffer variable 'b:vimtex'. Note that a project might consist of several files, so for a multi-file project one may have several buffers that are linked to the same data blob. This is by design, and enabled vimtex |vimtex| to work properly for multi-file latex projects. It also allows the editing of different latex projects simultaneously in different buffers. The command |VimtexInfo| (mapped to li by default) will show the contents of the local data blob. ============================================================================== FAQ *vimtex-faq* *vimtex-faq-surround* Q: |vimtex| provides `dse`, `dsc`, `cse`, and `csc`. These seem to be inspired by |surround.vim|. Does |vimtex| also provide the corresponding `yse` and `ysc`? A: The mentioned mappings are indeed inspired by |surround.vim|. However, |vimtex| does not provide `yse` and `ysc`. If you use |surround.vim|, then the asked for mappings may be easily added if one adds the following lines to ones `vimrc` file: > augroup latexSurround autocmd! autocmd FileType tex call s:latexSurround() augroup END function! s:latexSurround() let b:surround_{char2nr("e")} \ = "\\begin{\1environment: \1}\n\t\r\n\\end{\1\1}" let b:surround_{char2nr("c")} = "\\\1command: \1{\r}" endfunction < *vimtex-faq-isfname* Q: Vim throws error when jumping to file with |gf|. A: This might be due to the |isfname| setting, which by default contains `{,}` on windows. |isfname| is a global option, and can therefore not be set by `vimtex`. Suggested solution is to remove `{,}` from |isfname| by: > set isfname-={,} ============================================================================== CREDITS *vimtex-credits* |vimtex| is developed by Karl Yngve Lervåg , and is distributed under the MIT license. The project is available as a Git repository: https://github.com/lervag/vimtex. |vimtex| was developed from scratch, but much of the code has been based on LaTeX-Box: https://github.com/LaTeX-Box-Team/LaTeX-Box. LaTeX-suite was also an inspiration: http://vim-latex.sourceforge.net/. ============================================================================== CHANGELOG *vimtex-changelog* The following changelog only logs particularly important changes, such as changes that break backwards compatibility. See the git log for the detailed changelog. 2015-10-19: Added convenient insert mode mappings~ I've merged the `math_mappings` branch (see #172 and #251). It adds the feature that is explained in |vimtex-imaps|. 2015-06-06: Minor but convenient restructuring (++)~ I've changed a lot of the code structure in relatively small ways. For instance, instead of referring to the particular data blobs through the global array, I instead linked a buffer variable to the correct global array element. One particular change is that all modules are now initialized in three steps: 1. Initialize module options 2. Initialize script variables and single execution functionalities 3. Initialize buffer options Finally, I've cleaned up a lot of the code by removing some deprecation warnings and similar. 2015-03-21: Implemented index buffers, deprecated vimtex_toc filetype~ The system for displaying the table of content relied on a dedicated filetype plugin. This was inherited from LaTeX-Box, and worked quite well. However, I intend to implement more functionality that uses the same kind of buffer to display similar things, such as a list of labels. I realized I wanted the ToC window to be more adaptable, so I implemented the `index` interface for such buffers. The `index` in itself may be used to create ToC-like buffers with simple actions. The |vimtex-toc| uses and expands the `index` in such a way that the changes should barely be noticable from the user perspective. Note however the following variable name changes: *g:vimtex_toc_numbers_width* ---> |g:vimtex_toc_number_width| *g:vimtex_toc_hide_preamble* ---> |g:vimtex_toc_show_preamble| *g:vimtex_toc_numbers* ---> |g:vimtex_toc_show_numbers| *g:vimtex_toc_hide_line_numbers* ---> |g:vimtex_index_hide_line_numbers| *g:vimtex_toc_resize* ---> |g:vimtex_index_resize| *g:vimtex_toc_hide_help* ---> |g:vimtex_index_show_help| *g:vimtex_toc_split_pos* ---> |g:vimtex_index_split| *g:vimtex_toc_width* -/ *vim-latex-namechange* 2015-03-08: Changed the name to vimtex~ The old name `vim-latex` was already used by LaTeX-Suite. I was not aware of the name clash in the beginning. Due to the rising popularity of this plugin, it has become clear that such a name clash is very inconvenient. The present change is therefore very much needed. The name change is reflected throughout the plugin in the names of commands, mappings, functions, and options. People should update their `vimrc` settings accordingly. For instance, every option name should be changed from > g:latex_... = ... to > g:vimtex_... = ... 2014-12-07: Added more general view functionality~ Added new module for view functionality. This allows more complex view functions (and commands), for instance to do forward (and possibly backwards) searching through `synctex`. In the first version, I added forward search for mupdf by use of the `synctex` command and `xdotools`. The `g:latex_viewer` option has now been deprecated. Instead one should use |g:vimtex_view_method| and |g:vimtex_view_general_viewer|. Deprecated option: *g:latex_viewer* 2014-06-13: Changed some option names~ Some |vimtex| option names were changed in an attempt to make the names more consistent. These options are listed here for reference: *g:latex_errorformat_ignore_warnings* *g:latex_errorformat_show_warnings* *g:latex_latexmk_autojump* *g:latex_latexmk_quickfix* The new names are, respectively: |g:vimtex_quickfix_ignored_warnings| |g:vimtex_quickfix_ignore_all_warnings| |g:vimtex_quickfix_autojump| |g:vimtex_quickfix_mode| 2013-10-05: First public release~ ============================================================================== vim:tw=78:ts=8:ft=help:norl: