From 30ee6f08ee8e22c42ab2ef837c764f52656d025b Mon Sep 17 00:00:00 2001 From: Matrix Dai Date: Tue, 19 Apr 2022 22:36:14 +0800 Subject: ignore/types: add '*.asp' for asp type The `*.asp` was not included in the type "asp" when it was added. https://github.com/BurntSushi/ripgrep/pull/1134 PR #2188 --- crates/ignore/src/default_types.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index 519bb4c4..8f974ade 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -16,7 +16,8 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[ ("asciidoc", &["*.adoc", "*.asc", "*.asciidoc"]), ("asm", &["*.asm", "*.s", "*.S"]), ("asp", &[ - "*.aspx", "*.aspx.cs", "*.aspx.vb", "*.ascx", "*.ascx.cs", "*.ascx.vb", + "*.aspx", "*.aspx.cs", "*.aspx.vb", "*.ascx", "*.ascx.cs", + "*.ascx.vb", "*.asp" ]), ("ats", &["*.ats", "*.dats", "*.sats", "*.hats"]), ("avro", &["*.avdl", "*.avpr", "*.avsc"]), -- cgit v1.2.3