Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions doc/vimtex.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ CONTENTS *vimtex-contents*
VimCompletesMe |vimtex-complete-vcm|
nvim-cmp |vimtex-complete-nvim-cmp|
nvim-compe |vimtex-complete-nvim-compe|
MUcomplete |vimtex-complete-mucomplete|
Folding |vimtex-folding|
Indentation |vimtex-indent|
Syntax highlighting |vimtex-syntax|
Expand Down Expand Up @@ -4139,6 +4140,19 @@ And in Vimscript, it should look something like this: >
\ }
\}

MUcomplete~
*vimtex-complete-mucomplete*
MUcomplete is an implementation of chained (fallback) completion, whereby
several completion methods are attempted one after another until a result is
returned. The plugin is available here:
https://github.com/lifepillar/vim-mucomplete.

To enable automatic completion with MUcomplete, use the following options: >

let g:mucomplete#can_complete = {}
let g:mucomplete#can_complete.tex =
\ { 'omni': { t -> t =~# g:vimtex#re#neocomplete . '$' } }

==============================================================================
FOLDING *vimtex-folding*
*vimtex-bib-folding*
Expand Down