" vimtex - LaTeX plugin for Vim " " Maintainer: Karl Yngve LervÄg " Email: karl.yngve@gmail.com " if !get(g:, 'vimtex_enabled', 1) finish endif if exists('b:did_ftplugin') finish endif let b:did_ftplugin = 1 function! s:map(mode, lhs, rhs, ...) if !hasmapto(a:rhs, a:mode) \ && (a:0 > 0 || maparg(a:lhs, a:mode) ==# '') silent execute a:mode . 'map ' a:lhs a:rhs endif endfunction if get(g:, 'vimtex_toc_enabled', 1) command! -buffer VimtexTocOpen call vimtex#toc#open() command! -buffer VimtexTocToggle call vimtex#toc#toggle() nnoremap (vimtex-toc-open) :call vimtex#toc#open() nnoremap (vimtex-toc-toggle) :call vimtex#toc#toggle() call s:map('n', 'lt', '(vimtex-toc-open)') call s:map('n', 'lT', '(vimtex-toc-toggle)') endif " vim: fdm=marker sw=2