1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-03-17 20:28:03 +02:00

ignore/types: add DITA (Darwin Information Typing Architecture)

Closes #2148
This commit is contained in:
chrispy 2022-02-20 14:53:16 -05:00 committed by Andrew Gallant
parent 7c83b90f95
commit a4e3d56de1
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ Unreleased changes. Release notes have not yet been written.
Feature enhancements: Feature enhancements:
* Added or improved file type filtering for Elixir, Fuchsia, Gentoo, GraphQL, USD, V * Added or improved file type filtering for DITA, Elixir, Fuchsia, Gentoo, GraphQL, USD, V
* [FEATURE #2195](https://github.com/BurntSushi/ripgrep/issues/2195): * [FEATURE #2195](https://github.com/BurntSushi/ripgrep/issues/2195):
When `extra-verbose` mode is enabled in zsh, show extra file type info. When `extra-verbose` mode is enabled in zsh, show extra file type info.
* [FEATURE #2409](https://github.com/BurntSushi/ripgrep/pull/2409): * [FEATURE #2409](https://github.com/BurntSushi/ripgrep/pull/2409):

View File

@ -60,6 +60,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("devicetree", &["*.dts", "*.dtsi"]), ("devicetree", &["*.dts", "*.dtsi"]),
("dhall", &["*.dhall"]), ("dhall", &["*.dhall"]),
("diff", &["*.patch", "*.diff"]), ("diff", &["*.patch", "*.diff"]),
("dita", &["*.dita", "*.ditamap", "*.ditaval"]),
("docker", &["*Dockerfile*"]), ("docker", &["*Dockerfile*"]),
("dockercompose", &["docker-compose.yml", "docker-compose.*.yml"]), ("dockercompose", &["docker-compose.yml", "docker-compose.*.yml"]),
("dts", &["*.dts", "*.dtsi"]), ("dts", &["*.dts", "*.dtsi"]),