1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-02-09 14:14:56 +02:00

ignore/types: added V type

V (http://vlang.io) uses '.v' files.

Closes #2302
This commit is contained in:
edam 2022-09-09 22:23:42 +01:00 committed by Andrew Gallant
parent 7dafd58a32
commit 792451e331
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:
* Added or improved file type filtering for Elixir, Fuchsia, Gentoo, GraphQL, USD
* Added or improved file type filtering for Elixir, Fuchsia, Gentoo, GraphQL, USD, V
* [FEATURE #2409](https://github.com/BurntSushi/ripgrep/pull/2409):
Added installation instructions for `winget`.

View File

@ -267,6 +267,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("txt", &["*.txt"]),
("typoscript", &["*.typoscript", "*.ts"]),
("usd", &["*.usd", "*.usda", "*.usdc"]),
("v", &["*.v"]),
("vala", &["*.vala"]),
("vb", &["*.vb"]),
("vcl", &["*.vcl"]),