From 7b63b021b1a29eaaf3e493c9071f1d2447989bb0 Mon Sep 17 00:00:00 2001 From: William G Underwood <42812654+WGUNDERWOOD@users.noreply.github.com> Date: Thu, 20 Apr 2023 14:37:47 -0400 Subject: [PATCH] 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. --- src/info/sources.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/info/sources.rs b/src/info/sources.rs index bc658104..c994c0ce 100644 --- a/src/info/sources.rs +++ b/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