vimtex/ftplugin/bib.vim
Karl Yngve Lervåg d5e62ca646 Fix minor bug
2016-04-11 20:56:03 +02:00

33 lines
891 B
VimL

" 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 <silent><buffer>' 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 <buffer> <plug>(vimtex-toc-open) :call vimtex#toc#open()<cr>
nnoremap <buffer> <plug>(vimtex-toc-toggle) :call vimtex#toc#toggle()<cr>
call s:map('n', '<localleader>lt', '<plug>(vimtex-toc-open)')
call s:map('n', '<localleader>lT', '<plug>(vimtex-toc-toggle)')
endif
" vim: fdm=marker sw=2