diff --git a/test/issue/324/minimal.tex b/test/issue/324/minimal.tex new file mode 100644 index 0000000..5e2e7ab --- /dev/null +++ b/test/issue/324/minimal.tex @@ -0,0 +1,11 @@ +\documentclass{minimal} +\begin{document} + +\begin{equation} + \label{eq:eq} + x = y +\end{equation} + +Hello World, behold eq.~\ref{eq: + +\end{document} diff --git a/test/issue/324/vimrc b/test/issue/324/vimrc new file mode 100644 index 0000000..b7db332 --- /dev/null +++ b/test/issue/324/vimrc @@ -0,0 +1,17 @@ +set nocompatible +filetype plugin indent on +syntax enable + +set completeopt=menu,preview + +let &rtp = '~/.vim/bundle/vimtex,' . &rtp +let &rtp = '~/.vim/bundle/vimtex/after,' . &rtp +let &rtp = '~/.vim/bundle/supertab,' . &rtp + + +au FileType * + \ if &omnifunc != '' | + \ call SuperTabChain(&omnifunc, "") | + \ call SuperTabSetDefaultCompletionType("") | + \ endif +