25 lines
546 B
VimL
25 lines
546 B
VimL
set nocompatible
|
|
let &rtp = '../..,' . &rtp
|
|
filetype plugin on
|
|
|
|
nnoremap q :qall!<cr>
|
|
silent edit test.tex
|
|
|
|
if empty($INMAKE) | finish | endif
|
|
|
|
call cursor([3, 15])
|
|
call assert_equal({
|
|
\ 'candidates': ['amsmath', 'mathtools'],
|
|
\ 'type': 'usepackage',
|
|
\ 'selected': 'amsmath'
|
|
\}, vimtex#doc#get_context())
|
|
|
|
call cursor([3, 25])
|
|
call assert_equal({
|
|
\ 'candidates': ['amsmath', 'mathtools'],
|
|
\ 'type': 'usepackage',
|
|
\ 'selected': 'mathtools'
|
|
\}, vimtex#doc#get_context())
|
|
|
|
call vimtex#test#finished()
|