18 lines
347 B
VimL
18 lines
347 B
VimL
set nocompatible
|
|
set runtimepath^=../../../
|
|
filetype plugin indent on
|
|
|
|
nnoremap q :qall!<cr>
|
|
|
|
let g:vimtex_cache_root = '../.'
|
|
|
|
silent edit test.tex
|
|
|
|
call assert_equal(
|
|
\ 'test-kpsewhich-local-b/local.bib',
|
|
\ vimtex#paths#relative(
|
|
\ vimtex#kpsewhich#find('local.bib'),
|
|
\ expand('%:p:h:h')))
|
|
|
|
call vimtex#test#finished()
|