1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-12 19:18:24 +02:00

Add .inl as one of the c++ file typee definitions.

.inl files are often used by convention to include
both inline functions, or function templates.
This commit is contained in:
Brian Gianforcaro 2017-06-11 19:42:52 -07:00 committed by Andrew Gallant
parent 506ad1f3cf
commit 27f97db510

View File

@ -111,7 +111,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[
("config", &["*.config"]),
("cpp", &[
"*.C", "*.cc", "*.cpp", "*.cxx",
"*.h", "*.H", "*.hh", "*.hpp",
"*.h", "*.H", "*.hh", "*.hpp", "*.inl",
]),
("crystal", &["Projectfile", "*.cr"]),
("cs", &["*.cs"]),