瀏覽代碼

Add some compiled file

Wu Zhenyu 3 年之前
父節點
當前提交
c8f7cbf431
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/info/sources.rs

+ 3 - 1
src/info/sources.rs

@@ -26,10 +26,12 @@ impl<'a> File<'a> {
                 "blg" |                                          // BibTeX log file
                 "fdb_latexmk" |                                  // TeX latexmk file
                 "fls" |                                          // TeX -recorder file
+                "headfootlength" |                               // TeX package autofancyhdr file
                 "lof" |                                          // TeX list of figures
                 "log" |                                          // TeX log file
                 "lot" |                                          // TeX list of tables
-                "toc" => vec![self.path.with_extension("tex")],  // TeX table of contents
+                "toc" |                                          // TeX table of contents
+                "xdv" => vec![self.path.with_extension("tex")],  // XeTeX dvi
 
                 _ => vec![],  // No source files if none of the above
             }