mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-19 09:40:22 -07:00
parent
db6bb21a62
commit
ee1360cc07
@ -10,7 +10,7 @@ Unreleased changes. Release notes have not yet been written.
|
|||||||
|
|
||||||
Feature enhancements:
|
Feature enhancements:
|
||||||
|
|
||||||
* Added or improved file type filtering for DITA, Elixir, Fuchsia, Gentoo, GraphQL, Markdown, USD, V
|
* Added or improved file type filtering for DITA, Elixir, Fuchsia, Gentoo, GraphQL, Markdown, Raku, 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):
|
||||||
|
@ -210,6 +210,10 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
|
|||||||
("qml", &["*.qml"]),
|
("qml", &["*.qml"]),
|
||||||
("r", &["*.R", "*.r", "*.Rmd", "*.Rnw"]),
|
("r", &["*.R", "*.r", "*.Rmd", "*.Rnw"]),
|
||||||
("racket", &["*.rkt"]),
|
("racket", &["*.rkt"]),
|
||||||
|
("raku", &[
|
||||||
|
"*.raku", "*.rakumod", "*.rakudoc", "*.rakutest",
|
||||||
|
"*.p6", "*.pl6", "*.pm6"
|
||||||
|
]),
|
||||||
("rdoc", &["*.rdoc"]),
|
("rdoc", &["*.rdoc"]),
|
||||||
("readme", &["README*", "*README"]),
|
("readme", &["README*", "*README"]),
|
||||||
("reasonml", &["*.re", "*.rei"]),
|
("reasonml", &["*.re", "*.rei"]),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user