mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-19 09:40:22 -07:00
ignore/types: add spec file type
This is for RPM package SPEC files. Fixes #946, Closes #1449
This commit is contained in:
parent
f8418c6a52
commit
4628d77808
@ -10,7 +10,7 @@ Performance improvements:
|
|||||||
Feature enhancements:
|
Feature enhancements:
|
||||||
|
|
||||||
* Added or improved file type filtering for erb, diff, Gradle, HAML, Org,
|
* Added or improved file type filtering for erb, diff, Gradle, HAML, Org,
|
||||||
Postscript, Skim, Slim, Slime, Typoscript, xml.
|
Postscript, Skim, Slim, Slime, RPM Spec files, Typoscript, xml.
|
||||||
* [FEATURE #1390](https://github.com/BurntSushi/ripgrep/pull/1390):
|
* [FEATURE #1390](https://github.com/BurntSushi/ripgrep/pull/1390):
|
||||||
Add new `--no-context-separator` flag that always hides context separators.
|
Add new `--no-context-separator` flag that always hides context separators.
|
||||||
|
|
||||||
|
@ -280,6 +280,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[
|
|||||||
("sml", &["*.sml", "*.sig"]),
|
("sml", &["*.sml", "*.sig"]),
|
||||||
("soy", &["*.soy"]),
|
("soy", &["*.soy"]),
|
||||||
("spark", &["*.spark"]),
|
("spark", &["*.spark"]),
|
||||||
|
("spec", &["*.spec"]),
|
||||||
("sql", &["*.sql", "*.psql"]),
|
("sql", &["*.sql", "*.psql"]),
|
||||||
("stylus", &["*.styl"]),
|
("stylus", &["*.styl"]),
|
||||||
("sv", &["*.v", "*.vg", "*.sv", "*.svh", "*.h"]),
|
("sv", &["*.v", "*.vg", "*.sv", "*.svh", "*.h"]),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user