summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Altman <alexanderaltman@me.com>2016-11-01 03:56:53 -0700
committerAndrew Gallant <jamslam@gmail.com>2016-11-01 06:56:53 -0400
commit18237da9b2a0139f7e2bf9f384f5a8a939104e8c (patch)
treecf6fb19fc459025fe418615350232d0d78a802fd
parentf147f3aa39e6a239926bef461a6dfd2bac5185e1 (diff)
Add Agda and improve TeX ignore support (#207)
Add Agda and improve TeX ignore support
-rw-r--r--ignore/src/types.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ignore/src/types.rs b/ignore/src/types.rs
index dade0003..1ebadaf8 100644
--- a/ignore/src/types.rs
+++ b/ignore/src/types.rs
@@ -80,6 +80,7 @@ use pathutil::file_name;
use {Error, Match};
const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[
+ ("agda", &["*.agda", "*.lagda"]),
("asm", &["*.asm", "*.s", "*.S"]),
("awk", &["*.awk"]),
("c", &["*.c", "*.h", "*.H"]),
@@ -145,7 +146,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[
("sv", &["*.v", "*.vg", "*.sv", "*.svh", "*.h"]),
("swift", &["*.swift"]),
("tcl", &["*.tcl"]),
- ("tex", &["*.tex", "*.cls", "*.sty"]),
+ ("tex", &["*.tex", "*.ltx", "*.cls", "*.sty", "*.bib"]),
("ts", &["*.ts", "*.tsx"]),
("txt", &["*.txt"]),
("toml", &["*.toml", "Cargo.lock"]),