1851 lines
74 KiB
Plaintext
1851 lines
74 KiB
Plaintext
*vimtex.txt* A modern vim plugin for editing LaTeX files.
|
|
*vimtex*
|
|
|
|
Author: Karl Yngve Lervåg <karl.yngve@gmail.com>
|
|
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|
|
|
Complete image file names |vimtex-complete-images|
|
|
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, labels, and file names for figures
|
|
- 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 `<F7>`
|
|
- 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
|
|
- Support for multi-file project packages
|
|
- `import`
|
|
- `subfiles`
|
|
|
|
------------------------------------------------------------------------------
|
|
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.
|
|
|
|
See also |VimtexSubfileToggle|.
|
|
|
|
*vimtex-import*
|
|
Import~
|
|
|vimtex| also supports the `import` package, in that it should correctly
|
|
recognize the main file from sub files that are included through the
|
|
`subimport` command, e.g. >
|
|
|
|
\subimport{chapters/}{chapter1.tex}
|
|
<
|
|
The support also extends into correctly parsing the project for table of
|
|
contents.
|
|
|
|
*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 <plug>-mappings, see |using-<plug>|. For any given <plug> 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 <space>li <plug>(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 <plug>-maps or by mapping the
|
|
available commands.
|
|
|
|
In the below list of mappings, LHS is the default mapping, RHS is the
|
|
corresponding <plug>-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~
|
|
-----------------------------------------------------------~
|
|
<localleader>li |<plug>(vimtex-info)| `n`
|
|
<localleader>lI |<plug>(vimtex-info-full)| `n`
|
|
<localleader>lt |<plug>(vimtex-toc-open)| `n`
|
|
<localleader>lT |<plug>(vimtex-toc-toggle)| `n`
|
|
<localleader>ly |<plug>(vimtex-labels-open)| `n`
|
|
<localleader>lY |<plug>(vimtex-labels-toggle)| `n`
|
|
<localleader>lv |<plug>(vimtex-view)| `n`
|
|
<localleader>lr |<plug>(vimtex-reverse-search)| `n`
|
|
<localleader>ll |<plug>(vimtex-compile-toggle)| `n`
|
|
<localleader>lk |<plug>(vimtex-stop)| `n`
|
|
<localleader>lK |<plug>(vimtex-stop-all)| `n`
|
|
<localleader>le |<plug>(vimtex-errors)| `n`
|
|
<localleader>lo |<plug>(vimtex-compile-output)| `n`
|
|
<localleader>lg |<plug>(vimtex-status)| `n`
|
|
<localleader>lG |<plug>(vimtex-status-all)| `n`
|
|
<localleader>lc |<plug>(vimtex-clean)| `n`
|
|
<localleader>lC |<plug>(vimtex-clean-full)| `n`
|
|
<localleader>lm |<plug>(vimtex-imaps-list)| `n`
|
|
<localleader>lx |<plug>(vimtex-reload)| `n`
|
|
<localleader>ls |<plug>(vimtex-subfile-toggle)| `n`
|
|
dse |<plug>(vimtex-delete-env)| `n`
|
|
dsc |<plug>(vimtex-delete-cmd)| `n`
|
|
cse |<plug>(vimtex-change-env)| `n`
|
|
csc |<plug>(vimtex-change-cmd)| `n`
|
|
tse |<plug>(vimtex-toggle-star)| `n`
|
|
tsd |<plug>(vimtex-toggle-delim)| `n`
|
|
<F7> |<plug>(vimtex-create-cmd)| `ni`
|
|
]] |<plug>(vimtex-close-env)| `i`
|
|
a$ |<plug>(vimtex-a$)| `nxo`
|
|
i$ |<plug>(vimtex-i$)| `nxo`
|
|
ae |<plug>(vimtex-ae)| `nxo`
|
|
ie |<plug>(vimtex-ie)| `nxo`
|
|
ad |<plug>(vimtex-ad)| `nxo`
|
|
id |<plug>(vimtex-id)| `nxo`
|
|
ap |<plug>(vimtex-ap)| `nxo`
|
|
ip |<plug>(vimtex-ip)| `nxo`
|
|
% |<plug>(vimtex-%)| `nxo`
|
|
]] |<plug>(vimtex-]])| `nxo`
|
|
][ |<plug>(vimtex-][)| `nxo`
|
|
[] |<plug>(vimtex-[])| `nxo`
|
|
[[ |<plug>(vimtex-[[)| `nxo`
|
|
} |<plug>(vimtex-})| `nxo`
|
|
{ |<plug>(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_img_use_tail*
|
|
If enabled, only the tail part of file names are completed. This is useful
|
|
if one uses the `graphicx` package and the `\graphicspath` command.
|
|
|
|
Default value: 0
|
|
|
|
*g:vimtex_change_complete_envs*
|
|
Define a list of environments that will be completed when changing the
|
|
surrounding environments (see |<plug>(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
|
|
|<plug>(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
|
|
|<plug>(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 enable folding. More detailed info can be found in the
|
|
section |vimtex-folding|.
|
|
|
|
Default value: 0
|
|
|
|
*g:vimtex_fold_manual*
|
|
With this option enabled, |vimtex| uses |fold-manual| as the main
|
|
|foldmethod|. It still uses the |foldexpr| function to compute the fold
|
|
levels, but it only computes the fold levels on demand, see
|
|
|VimtexRefreshFolds| and |vimtex-zx|.
|
|
|
|
The reasoning behind this option is that the |fold-expr| method of folding
|
|
may sometimes be slow, e.g. for long lines and large files. |fold-manual| is
|
|
very fast.
|
|
|
|
An alternative to this method of speeding up is to use a dedicated plugin
|
|
for optimizing the fold functionality, see e.g.
|
|
https://github.com/Konfekt/FastFold.
|
|
|
|
Default value: 0
|
|
|
|
*g:vimtex_fold_comments*
|
|
Control whether or not to fold multiline comments.
|
|
|
|
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 the 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_list*
|
|
The list of mappings to generate on start up. The list of activated mappings
|
|
can be viewed with |VimtexImapsList|.
|
|
|
|
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 \"^<C-\^>^<C-n^>'
|
|
\ . ':drop \%f^<CR^>:\%l^<CR^>:normal\! zzzv^<CR^>'
|
|
\ . ':execute ''drop '' . fnameescape(''\%f'')^<CR^>'
|
|
\ . ':\%l^<CR^>:normal\! zzzv^<CR^>'
|
|
\ . ':call remote_foreground('''.v:servername.''')^<CR^>\""'
|
|
<
|
|
*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 '<localleader>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*
|
|
*<plug>(vimtex-info)*
|
|
:VimtexInfo Show information that is stored by vimtex about the
|
|
current LaTeX project (available mostly for debug
|
|
purposes).
|
|
|
|
*VimtexInfo!*
|
|
*<plug>(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*
|
|
*<plug>(vimtex-toc-open)*
|
|
:VimtexTocOpen Open table of contents.
|
|
|
|
*VimtexTocToggle*
|
|
*<plug>(vimtex-toc-toggle)*
|
|
:VimtexTocToggle Toggle table of contents.
|
|
|
|
*VimtexLabelsOpen*
|
|
*<plug>(vimtex-labels-open)*
|
|
:VimtexLabelsOpen Open table of labels.
|
|
|
|
*VimtexLabelsToggle*
|
|
*<plug>(vimtex-labels-toggle)*
|
|
:VimtexLabelsToggle Toggle table of labels.
|
|
|
|
*VimtexCompile*
|
|
*<plug>(vimtex-compile)*
|
|
:VimtexCompile Starts compilation, either in continuous mode or in
|
|
single shot mode, depending on the value of
|
|
|g:vimtex_latexmk_continuous|.
|
|
|
|
*VimtexCompileToggle*
|
|
*<plug>(vimtex-compile-toggle)*
|
|
:VimtexCompileToggle Toggles compilation. Only useful when continuous
|
|
mode is enabled (|g:vimtex_latexmk_continuous|).
|
|
|
|
*VimtexCompileSS*
|
|
*<plug>(vimtex-compile-ss)*
|
|
:VimtexCompileSS Start single shot compilation in background.
|
|
|
|
*VimtexCompileSS!*
|
|
:VimtexCompileSS! Like |VimtexCompileSS|, but in foreground.
|
|
|
|
*VimtexOutput*
|
|
*<plug>(vimtex-compile-output)*
|
|
:VimtexOutput Open file where `latexmk` output is redirected.
|
|
|
|
*VimtexStop*
|
|
*<plug>(vimtex-stop)*
|
|
:VimtexStop Stop compilation for the current project.
|
|
|
|
*VimtexStopAll*
|
|
*<plug>(vimtex-stop-all)*
|
|
:VimtexStopAll Stop compilation for all open projects in the
|
|
current vim instance.
|
|
|
|
*VimtexStatus*
|
|
*<plug>(vimtex-status)*
|
|
:VimtexStatus Show compilation status for current project.
|
|
|
|
*VimtexStatus!*
|
|
*<plug>(vimtex-status-all)*
|
|
:VimtexStatus! Show compilation status for all open projects in the
|
|
current vim instance.
|
|
|
|
*VimtexClean*
|
|
*<plug>(vimtex-clean)*
|
|
:VimtexClean Clean auxilliary files
|
|
|
|
*VimtexClean!*
|
|
*<plug>(vimtex-clean-full)*
|
|
:VimtexClean! Clean auxilliary files, include output files
|
|
|
|
*VimtexErrors*
|
|
*<plug>(vimtex-errors)*
|
|
:VimtexErrors Open |quickfix| window if there are errors or
|
|
warnings.
|
|
|
|
*VimtexLacheck*
|
|
*<plug>(vimtex-lacheck)*
|
|
:VimtexLacheck Run `lacheck` to check document for errors.
|
|
|
|
*VimtexView*
|
|
*<plug>(vimtex-view)*
|
|
:VimtexView View `pdf` for current project, perform forward
|
|
search if available.
|
|
|
|
*VimtexRSearch*
|
|
*<plug>(vimtex-reverse-search)*
|
|
:VimtexRSearch Do reverse search (only available for MuPDF viewer).
|
|
|
|
*VimtexReload*
|
|
*<plug>(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
|
|
<
|
|
*VimtexImapsList*
|
|
*<plug>(vimtex-imaps-list)*
|
|
:VimtexImapsList Show the list of insert mode mappings created by the
|
|
|vimtex-imaps| feature. The mappings are displayed
|
|
in a scratch buffer. Press `q` or `<esc>` to close
|
|
the buffer.
|
|
|
|
*VimtexSubfileToggle*
|
|
*<plug>(vimtex-subfile-toggle)*
|
|
:VimtexSubfileToggle Toggle between the current subfile and the main
|
|
project file as "current project". This allows one
|
|
to work on a subfile directly, disconnected from the
|
|
main project. That is, when the subfile is active,
|
|
then commands for compiling and similar work on the
|
|
subfile.
|
|
|
|
Note also that it is possible to have both projects
|
|
active simultaneously. That is, if one starts
|
|
latexmk for the main file, then toggles to the
|
|
subfile, then the main file will still be available
|
|
and under latexmk compilation.
|
|
|
|
------------------------------------------------------------------------------
|
|
Map definitions~
|
|
*vimtex-mappings*
|
|
|
|
*vimtex-zx*
|
|
When |vimtex| folding is enabled and when the manual mode is turned on
|
|
(|g:vimtex_fold_manual|), then |vimtex| remaps |zx| and |zX| in such that
|
|
the folds are refreshed appropriately.
|
|
|
|
*<plug>(vimtex-delete-env)*
|
|
*<plug>(vimtex-change-env)*
|
|
Delete/Change surrounding environment.
|
|
|
|
*<plug>(vimtex-delete-cmd)*
|
|
*<plug>(vimtex-change-cmd)*
|
|
Delete/Change surrounding command. Note: <plug>(vimtex-delete-cmd) depends
|
|
on |surround.vim| (https://github.com/tpope/vim-surround).
|
|
|
|
*<plug>(vimtex-toggle-star)*
|
|
Toggle starred environment.
|
|
|
|
*<plug>(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|.
|
|
|
|
*<plug>(vimtex-create-cmd)*
|
|
Convert current word into a command. This works in both normal and insert
|
|
mode.
|
|
|
|
*<plug>(vimtex-close-env)*
|
|
Close the current environment (insert mode).
|
|
|
|
*<plug>(vimtex-a$)*
|
|
Text object for inline math (inclusive).
|
|
|
|
*<plug>(vimtex-i$)*
|
|
Text object for inline math (exclusive).
|
|
|
|
*<plug>(vimtex-ae)*
|
|
Text object for environments (inclusive).
|
|
|
|
*<plug>(vimtex-ie)*
|
|
Text object for environments (exclusive).
|
|
|
|
*<plug>(vimtex-ad)*
|
|
Text object for delimiters (inclusive).
|
|
|
|
*<plug>(vimtex-id)*
|
|
Text object for delimiters (exclusive).
|
|
|
|
*<plug>(vimtex-ap)*
|
|
Text object for paragraphs (inclusive).
|
|
|
|
*<plug>(vimtex-ip)*
|
|
Text object for paragraphs (exclusive).
|
|
|
|
*<plug>(vimtex-%)*
|
|
Find matching pair.
|
|
|
|
*<plug>(vimtex-]])*
|
|
Section forward (inclusive).
|
|
|
|
*<plug>(vimtex-][)*
|
|
Section forward (exclusive).
|
|
|
|
*<plug>(vimtex-[])*
|
|
Section backward (inclusive).
|
|
|
|
*<plug>(vimtex-[[)*
|
|
Section backward (exclusive).
|
|
|
|
*<plug>(vimtex-})*
|
|
Paragraph forward.
|
|
|
|
*<plug>(vimtex-{)*
|
|
Paragraph backward.
|
|
|
|
------------------------------------------------------------------------------
|
|
Insert mode mappings~
|
|
*vimtex-imaps*
|
|
|
|
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|. The mappings utilize a map leader defined by
|
|
|g:vimtex_imaps_leader|. The default list of maps are all math mode mappings,
|
|
but one may also add mappings that are available and useful outside of math
|
|
mode. To see the list of mappings that are created, one can use the command
|
|
|VimtexImapsList|, which is by default mapped to `<localleader>lm`.
|
|
|
|
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 \alpha and \beta mappings
|
|
let g:vimtex_imaps_disabled = ['a', 'b']
|
|
|
|
" Add custom mapping through vimtex#imap#add_map
|
|
call vimtex#imaps#add_map({
|
|
\ 'lhs' : 'test',
|
|
\ 'rhs' : '\tested',
|
|
\ 'wrapper' : 'vimtex#imaps#wrap_trivial'
|
|
\})
|
|
<
|
|
*vimtex#imaps#add_map*
|
|
|
|
This function is used to add new insert mode mappings. It takes a single
|
|
dictionary argument: >
|
|
|
|
map = {
|
|
\ 'lhs' : lhs,
|
|
\ 'rhs' : rhs,
|
|
\ 'leader' : leader_key,
|
|
\ 'wrapper' : function_name
|
|
\ }
|
|
|
|
Explanation of the keys:
|
|
|
|
lhs~
|
|
Mandatory argument. The left-hand side part of the map.
|
|
|
|
lhs_rhs~
|
|
Mandatory argument. The right-hand side part of the map.
|
|
|
|
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 used to generate the `rhs`. Two
|
|
functions are available from |vimtex|:
|
|
|
|
`vimtex#imaps#wrap_trivial` Trivial wrapper: Simply returns `rhs`.
|
|
`vimtex#imaps#wrap_math` Only define `rhs` if inside a math environment.
|
|
This is the default wrapper function and will
|
|
be used if no other wrapper is supplied.
|
|
|
|
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.
|
|
|
|
Note: that this feature is not the same as the snippet feature of |UltiSnips|
|
|
or |neosnippet|. The imaps feature of |vimtex| previously supported `automatic`
|
|
snippets, but these have been removed after careful considerations and input
|
|
from |vimtex| users, please see vimtex issue #295:
|
|
https://github.com/lervag/vimtex/issues/295#issuecomment-164262446
|
|
It has been decided that the best approach is to only provide basic mappings,
|
|
and to let users manully create automatic snippets through the anonymous
|
|
snippet functions in |UltiSnips| and |neosnippet|, please see |UltiSnips#Anon|
|
|
and |neosnippet#anonymous|, respectively. Here are a couple of examples that
|
|
show how to create such mappings: >
|
|
|
|
" Using neosnippet#anonymous
|
|
inoremap <silent><expr> __ neosnippet#anonymous('_${1}${0}')
|
|
inoremap <silent><expr> ^^ neosnippet#anonymous('^${1}${0}')
|
|
|
|
" Using UltiSnips#Anon
|
|
inoremap <silent> __ __<c-r>=UltiSnips#Anon('_{$1}$0', '__', '', 'i')<cr>
|
|
inoremap <silent> ^^ ^^<c-r>=UltiSnips#Anon('^{$1}$0', '^^', '', 'i')<cr>
|
|
|
|
------------------------------------------------------------------------------
|
|
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 labels, citations, and file names for figures.
|
|
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_close_braces|
|
|
|g:vimtex_complete_recursive_bib|
|
|
|
|
------------------------------------------------------------------------------
|
|
Complete labels~
|
|
*vimtex-complete-labels*
|
|
|
|
Label completion is triggered by '\ref{' commands. 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:<CTRL-X><CTRL-O>
|
|
|
|
offers a list of all matching labels, with their associated value and page
|
|
number. The label completion matches:
|
|
|
|
1. labels: >
|
|
\ref{sec:<CTRL-X><CTRL-O>
|
|
< 2. numbers: >
|
|
\eqref{2<CTRL-X><CTRL-O>
|
|
< 3. labels and numbers together (separated by whitespace): >
|
|
\eqref{eq 2<CTRL-X><CTRL-O>
|
|
|
|
------------------------------------------------------------------------------
|
|
Complete citations~
|
|
*vimtex-complete-cites*
|
|
|
|
Citation completion is triggered by '\cite{' commands. 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<CTRL-X><CTRL-O>
|
|
\cite{algo<CTRL-X><CTRL-O>
|
|
\cite{Don.*Knuth<CTRL-X><CTRL-O>
|
|
|
|
In particular, note that regular expressions (or vim patterns) can be used
|
|
after '\cite{' to search for candidates.
|
|
|
|
------------------------------------------------------------------------------
|
|
Complete file names for figures~
|
|
*vimtex-complete-images*
|
|
|
|
File name completion for figures is triggered by '\includegraphic{' commands.
|
|
|
|
By default, the paths are completed relative to the root path of the main
|
|
file. One can use the option |g:vimtex_complete_img_use_tail| to instead
|
|
complete only the tail part of file names. This is useful if one uses the
|
|
`graphicx` package and the `\graphicspath` command.
|
|
|
|
------------------------------------------------------------------------------
|
|
Complete input/include files~
|
|
*vimtex-complete-input*
|
|
|
|
File name completion for input/include files is triggered by '\input{' or
|
|
'\include{' commands.
|
|
|
|
------------------------------------------------------------------------------
|
|
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*%(\s*\[[^]]*\])?\s*\{[^{}]*'
|
|
\ . '|includegraphics%(\s*\[[^]]*\])?\s*\{[^{}]*'
|
|
\ . '|%(include|input)\s*\{[^{}]*'
|
|
\ . ')'
|
|
<
|
|
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]*([^]]*])?{([^}]*,?)*',
|
|
\ 're!\\includegraphics([^]]*])?{[^}]*',
|
|
\ 're!\\(include|input){[^}]*'
|
|
\ ]
|
|
|
|
==============================================================================
|
|
FOLDING *vimtex-folding*
|
|
|
|
|vimtex| can fold documents according to the LaTeX structure (part, chapter,
|
|
section and subsection). Folding is turned off by default, but it can be
|
|
enabled if desired, either through the option |g:vimtex_fold_enabled|, or
|
|
manually with >
|
|
|
|
set foldmethod=expr
|
|
set foldexpr=vimtex#fold#level(v:lnum)
|
|
set foldtext=vimtex#fold#text()
|
|
|
|
When folding is enabled and a LaTeX document is opened, the document is parsed
|
|
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. This parsing is done automatically every time the folds are
|
|
recomputed, if there are any changes to the file.
|
|
|
|
The fold function also recognizes "fake" sections. That is, it parses comments
|
|
similar to: >
|
|
|
|
% Fakepart title
|
|
% Fakechapter title
|
|
% Fakesection title
|
|
% Fakesubsection title
|
|
|
|
The fake sections are folded at the same level as the corresponding "real"
|
|
sections. The fold title is the provided title with the `Fake...` part
|
|
prepended.
|
|
|
|
Note: The |fold-expr| method of folding is well known to be slow, e.g. for
|
|
long lines and large files. To speed things up, the user may want to
|
|
enable the |g:vimtex_fold_manual| option. An alternative is to add
|
|
a dedicated plugin that improves folding speed for the slow fold
|
|
methods, e.g. https://github.com/Konfekt/FastFold.
|
|
|
|
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_manual|
|
|
|g:vimtex_fold_comments|
|
|
|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 <cr> or <space>. 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 '<localleader>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_<viewer>_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| (<localleader>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 double 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 <localleader>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-={,}
|
|
<
|
|
*vimtex-faq-neovim*
|
|
Q: Does |vimtex| work with neovim?
|
|
A: Yes, partly. Most features work out of the box, but the `latexmk` coupling
|
|
and some if the viewer functionality require the |--remote| options from
|
|
the |clientserver|. For some reason, these options have been removed from
|
|
neovim, see #1750 [0]. There does remain some hope that the options will be
|
|
reimplemented sometime in the future, and there is an open issue on vimtex
|
|
(#262 [1]) that will remain open until neovim is fully supported.
|
|
|
|
In the meantime, there exists a workaround: `neovim-remote` [2] is a simple
|
|
tool that implements the |--remote| options through a python script. If one
|
|
downloads this tool and sets the option |g:vimtex_latexmk_progname| to
|
|
`nvr` (or the full path, if `nvr` is not in `$PATH`), then everything
|
|
should work.
|
|
|
|
Note: I do not plan to implement a custom solution for neovim in |vimtex|.
|
|
This means that support for neovim must either come from an update on
|
|
the neovim issue #1750, or through the mentioned workaround.
|
|
|
|
[0]: https://github.com/neovim/neovim/issues/1750
|
|
[1]: https://github.com/lervag/vimtex/issues/262
|
|
[2]: https://github.com/mhinz/neovim-remote
|
|
|
|
==============================================================================
|
|
CREDITS *vimtex-credits*
|
|
|
|
|vimtex| is developed by Karl Yngve Lervåg <karl.yngve@gmail.com>, 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:
|