diff --git a/doc/vimtex.txt b/doc/vimtex.txt index 92b8b53..8163627 100644 --- a/doc/vimtex.txt +++ b/doc/vimtex.txt @@ -54,6 +54,7 @@ CONTENTS *vimtex-contents* Navigation |vimtex-navigation| Table of contents |vimtex-toc| Table of labels |vimtex-labels| + Unite sources |vimtex-unite| Latexmk |vimtex-latexmk| Latexmk tricks |vimtex-latexmk-tricks| Lacheck |vimtex-latexmk-lacheck| @@ -1519,6 +1520,30 @@ keybinding. Associated settings: |g:vimtex_labels_enabled| +------------------------------------------------------------------------------ +Unite sources~ + *vimtex-unite* + *vimtex_toc* + *vimtex_labels* + + https://github.com/Shougo/unite.vim +The |unite.vim| plugin is a popular interface for many things, including +outlines. Although |vimtex| includes a simple interface for tables of contents +and labels, it also makes sense to provide these as sources to |unite.vim|. +The source names are: + + vimtex_toc Table of contents + vimtex_labels Table of labels + +The sources use similar syntax highlighting to the internal |vimtex| +interfaces. + +If one prefers the |unite.vim| sources to the |vimtex| interface, one may +override the default mappings, e.g.: > + + nnoremap lt :Unite vimtex_toc + nnoremap ly :Unite vimtex_labels + ============================================================================== LATEXMK *vimtex-latexmk*