Browse Source

added ".out" files to list of compiled ".tex" files

The popular "hyperref" LaTeX package produces ".out"
files containing a list of bookmarks.
exa should recognize these as compiled ".tex" files
and color them accordingly.
William G Underwood 2 years ago
parent
commit
7b63b021b1
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/info/sources.rs

+ 1 - 0
src/info/sources.rs

@@ -29,6 +29,7 @@ impl<'a> File<'a> {
                 "lof" |                                          // TeX list of figures
                 "log" |                                          // TeX log file
                 "lot" |                                          // TeX list of tables
+                "out" |                                          // hyperref list of bookmarks
                 "toc" => vec![self.path.with_extension("tex")],  // TeX table of contents
 
                 _ => vec![],  // No source files if none of the above