Added test files for #627

This commit is contained in:
Karl Yngve Lervåg 2016-12-29 19:38:04 +01:00
parent 9c9091ca7b
commit b98d4db8d0
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,7 @@
$pdflatex = "xelatex --shell-escape -src-specials -synctex=1 -interaction=nonstopmode %O %S";
$preview_continuous_mode = 1;
$pdf_previewer = "start SumatraPDF -reuse-instance -inverse-search -a %O %S";
$pdf_mode = 1;
$clean_ext = 'synctex.gz synctex.gz(busy) acn acr alg aux bbl bcf blg brf dvi fdb_latexmk glg \
glo gls idx ilg ind ist lof log lot lox out paux pdfsync run.xml toc';
$recorder = 1;

View File

@ -0,0 +1,4 @@
\documentclass{minimal}
\begin{document}
Hello World!
\end{document}

17
test/issues/627/minivimrc Normal file
View File

@ -0,0 +1,17 @@
set nocompatible
let &rtp = '~/.vim/bundle/vimtex,' . &rtp
let &rtp .= ',~/.vim/bundle/vimtex/after'
filetype plugin indent on
syntax enable
let g:tex_flavor = "latex"
let g:vimtex_latexmk_background = 1
let g:vimtex_view_general_viewer = 'SumatraPDF'
let g:vimtex_view_general_options =
\ '-reuse-instance -forward-search @line @pdf @tex'
let g:vimtex_view_general_options_latexmk = '-reuse-instance'
if !has('win32')
echoerr 'This test case should be run on windows!'
endif