-
Notifications
You must be signed in to change notification settings - Fork 395
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
8,996 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@book{DBLP:books/aw/Lamport86, | ||
author = {Leslie Lamport}, | ||
title = {LaTeX: User's Guide {\&} Reference Manual}, | ||
publisher = {Addison-Wesley}, | ||
year = {1986}, | ||
isbn = {0-201-15790-X}, | ||
timestamp = {Thu, 03 Jan 2002 11:51:07 +0100}, | ||
biburl = {https://dblp.org/rec/books/aw/Lamport86.bib}, | ||
bibsource = {dblp computer science bibliography, https://dblp.org} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@book{DBLP:books/aw/Knuth86a, | ||
author = {Donald E. Knuth}, | ||
title = {TeX: The Program}, | ||
publisher = {Addison-Wesley}, | ||
year = {1986}, | ||
isbn = {0-201-13437-3}, | ||
timestamp = {Thu, 03 Jan 2002 11:51:07 +0100}, | ||
biburl = {https://dblp.org/rec/books/aw/Knuth86a.bib}, | ||
bibsource = {dblp computer science bibliography, https://dblp.org} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
\documentclass{article} | ||
\usepackage{biblatex} | ||
\addbibresource{test_globbed_{1,2}.bib} | ||
\begin{document} | ||
Test | ||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
set nocompatible | ||
let &rtp = '../..,' . &rtp | ||
filetype plugin on | ||
|
||
nnoremap q :qall!<cr> | ||
let g:vimtex_cache_root = '.' | ||
let g:vimtex_cache_persistent = 0 | ||
|
||
let s:tex_filename = expand('<sfile>:r') . '.tex' | ||
silent execute 'edit' s:tex_filename | ||
|
||
if empty($INMAKE) | finish | endif | ||
|
||
" calls files_manual when no bcf file for tex file found | ||
let s:candidates = vimtex#test#completion('\cite{', '') | ||
call assert_equal(2, len(s:candidates)) | ||
|
||
bwipeout! | ||
call vimtex#test#finished() |
Oops, something went wrong.