The following settings affect the completion functionality in Latex-Suite.
These three settings affect the aesthetics of the completion functionality.
Setting | Explanation | Default Value |
---|---|---|
g:Tex_ViewerCwindowHeight | The height of the cwindow which displays the
list of \label s etc. | 5 |
g:Tex_ViewerPreviewHeight | The height of the preview window which shows the context of a
\label etc. | 10 |
g:Tex_ExplorerHeight | The height of the explorer window which lists the files from which to choose an image file. | 10 |
g:Tex_ImageDir | The directory to scan for images | '' |
Type | string |
Default Value | '' |
This string describes the directories which are scanned while trying
to search for .bib
and .bbl
files. See the cite completion
section for more details.
This string should be set in the syntax accepted by Vim's native
'path'
setting. Do not include the present
directory '.'
. While searching for
bibliography
files, the present directory will be
prepended to this variable.
When set to 1 (default),
Latex-Suite searches for \label
s in all
.tex
files of your project,
starting with the
main file
when <F9> is pressed. See \ref completion for details.
When set to 1 and if Tex_UseOutlineCompletion
is 0,
Latex-Suite searches for \label
s in all
.tex
files in the directory containing the file
being edited when <F9> is pressed. See \ref completion for details.
Type | String |
Default Value | '' |
This setting is meant to be initialized on a per-project basis using
the Latex-Suite master file as
described in Latex-Suite Project
section. It is a list of source files which are used in the project.
If defined, then instead of using the logic described in
Tex_UseSimpleLabelSearch to
search for files in which to search for \label
s, we
simply search for \label
s in this list. This
significantly reduces the time it takes to generate the list of
possible completions for large projects.
The list is specified as a whitespace separated list of filenames relative to the location of the main file.
When set to 1 (default), Latex-Suite uses python to parse your bib-file. See \cite completion for details.