From f37aeebef03eec91048e033afdfcc65ab8a83fe9 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Sat, 3 Oct 2020 19:46:06 -0400 Subject: [PATCH 1/2] Add additional TeX compiled files Specifically .fls and .fdb_latexmk, which the popular `latexmk` tool produces. --- src/info/sources.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/info/sources.rs b/src/info/sources.rs index 4c74999..bb8be6c 100644 --- a/src/info/sources.rs +++ b/src/info/sources.rs @@ -22,6 +22,8 @@ impl<'a> File<'a> { "aux" | // TeX: auxiliary file "bbl" | // BibTeX bibliography file "blg" | // BibTeX log file + "fdb_latexmk" | // TeX latexmk file + "fls" | // TeX -recorder file "lof" | // TeX list of figures "log" | // TeX log file "lot" | // TeX list of tables From c0f01310c4b67692d90df1531ea040df88f6dbdd Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Sat, 3 Oct 2020 20:25:24 -0400 Subject: [PATCH 2/2] Add bcf biblatex control file --- src/info/sources.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/info/sources.rs b/src/info/sources.rs index bb8be6c..a007e3c 100644 --- a/src/info/sources.rs +++ b/src/info/sources.rs @@ -21,6 +21,7 @@ impl<'a> File<'a> { "aux" | // TeX: auxiliary file "bbl" | // BibTeX bibliography file + "bcf" | // biblatex control file "blg" | // BibTeX log file "fdb_latexmk" | // TeX latexmk file "fls" | // TeX -recorder file