I broke up with neovim....vim is my best friend now
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
set nocompatible
|
||||
let &rtp = '../..,' . &rtp
|
||||
filetype plugin on
|
||||
|
||||
set nomore
|
||||
|
||||
nnoremap q :qall!<cr>
|
||||
|
||||
let g:vimtex_cache_root = '.'
|
||||
let g:vimtex_cache_persistent = 0
|
||||
|
||||
silent edit test3.tex
|
||||
|
||||
if empty($INMAKE) | finish | endif
|
||||
|
||||
" Candidates from \newenvironment from custom classes
|
||||
let s:candidates = vimtex#test#completion('\begin{', 'test3')
|
||||
call assert_equal(len(s:candidates), 2)
|
||||
call assert_equal(s:candidates[0].word, 'test3Simple')
|
||||
call assert_equal(s:candidates[1].word, 'test3Boxed')
|
||||
|
||||
call vimtex#test#finished()
|
||||
Reference in New Issue
Block a user