1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-01-13 21:28:13 +02:00

ignore/types: add red

See: https://www.red-lang.org/

Closes #1663
This commit is contained in:
Raimon Grau 2020-08-25 16:08:11 +01:00 committed by Andrew Gallant
parent 121e0135c1
commit 53c4855517
2 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,8 @@ Security fixes:
Feature enhancements:
* Added or improved file type filtering for ASP, Bazel, dvc, FlatBuffers,
Futhark, minified files, Mint, pofiles (from GNU gettext) Racket, VCL, Yang.
Futhark, minified files, Mint, pofiles (from GNU gettext) Racket, Red, VCL,
Yang.
* [FEATURE #1404](https://github.com/BurntSushi/ripgrep/pull/1404):
ripgrep now prints a warning if nothing is searched.
* [FEATURE #1680](https://github.com/BurntSushi/ripgrep/pull/1680):

View File

@ -170,6 +170,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("racket", &["*.rkt"]),
("rdoc", &["*.rdoc"]),
("readme", &["README*", "*README"]),
("red", &["*.r", "*.red", "*.reds"]),
("robot", &["*.robot"]),
("rst", &["*.rst"]),
("ruby", &["Gemfile", "*.gemspec", ".irbrc", "Rakefile", "*.rb"]),